Skip to content

Commit

Permalink
puzzle for #518
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Oct 29, 2022
1 parent 84fe615 commit 5d01d13
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/test/java/com/amihaiemil/eoyaml/RtYamlInputTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import org.apache.commons.io.IOUtils;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.Ignore;
import org.junit.Test;

/**
Expand Down Expand Up @@ -938,15 +939,18 @@ public void supportsBracketedNotation() throws IOException {
}

/**
* Do a round-trip test on sample file containing a scalar using Spring property reference syntax.
* Do a round-trip test on sample file containing a scalar using Spring
* property reference syntax.
*
* Unit test for
* <a href="https://github.com/decorators-squad/eo-yaml/issues/518">#518</a>
* based on
* <a href="https://github.com/decorators-squad/eo-yaml/issues/515">PR</a>
*
* @todo #518:60min Fix the bug reported in 518, so that this unit test
* passes.
* @throws IOException When there's a problem reading the sample files.
*/
@Test
@Ignore
public void supportsSpringPropertyRef() throws IOException {
final String filename = "issue_518_spring_property_ref.yml";
final String fileContents = readTestResource(filename).trim();
Expand Down

1 comment on commit 5d01d13

@zoeself
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@amihaiemil I've opened the Issues [#522] for the newly added to-dos.

The to-dos may have been added in an earlier commit, but I've found them just now.

Please sign in to comment.