-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added outYaml comparisons, discovered that our Presenter is rendering…
… yaml differently, added passing ScalarStyle to nodes so that we render nodes as they were, unborked 6H3V this way, this is like constant cramp in my gray matter, yaml is horrible
- Loading branch information
Showing
13 changed files
with
243 additions
and
56 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
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
14 changes: 12 additions & 2 deletions
14
integration-tests/src/test/scala/org/virtuslab/yaml/OfficialTestSuiteSpec.scala
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 |
---|---|---|
@@ -1,7 +1,17 @@ | ||
package org.virtuslab.yaml | ||
|
||
import scala.util.matching.Regex | ||
|
||
class OfficialTestSuiteSpec extends YamlRunnerSpec { | ||
|
||
override def resourcePath: String = "/yaml/test-suite" | ||
override def createTestRunner(yamlPath: os.Path): TestRunner = YamlSuiteTestRunner(yamlPath) | ||
override val verbose: Boolean = true | ||
override val testOutYaml: Boolean = false | ||
override val skipErrors: Boolean = false | ||
override val skipInvalidEvents: Boolean = false | ||
|
||
// override def runMatching: Regex = ".*LQZ7.*".r | ||
|
||
override def resourcePath: String = "/yaml/test-suite" | ||
override def createTestRunner(yamlPath: os.Path): TestRunner = | ||
YamlSuiteTestRunner(yamlPath, testOutYaml) | ||
} |
Oops, something went wrong.