-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08efd57
commit 64ceb80
Showing
8 changed files
with
133 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
text => <<~'EOF', | ||
this is fufoo stuff | ||
EOF | ||
|
||
expect => <<~'EOF', | ||
this is <span class="entity test_entity" data-entity-type="test_entity" data-entity-value="fufoo">fufoo</span> stuff | ||
EOF | ||
|
||
entities => { | ||
test_entity => { | ||
"fufoo" => 1, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
text => <<~'EOF', | ||
new closing dispo | ||
EOF | ||
|
||
expect => <<~'EOF', | ||
<span class="entity test_entity" data-entity-type="test_entity" data-entity-value="new closing dispo">new closing dispo</span> | ||
EOF | ||
|
||
entities => { | ||
test_entity => { | ||
"new closing dispo" => 1, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
text => <<~'EOF', | ||
The prof said "sydney rox" | ||
EOF | ||
|
||
expect => <<~'EOF', | ||
The prof said "<span class="entity test_entity" data-entity-type="test_entity" data-entity-value="sydney rox">sydney rox</span>" | ||
EOF | ||
|
||
entities => { | ||
test_entity => { | ||
"sydney rox" => 1, | ||
}, | ||
}, | ||
} |