Skip to content

Commit

Permalink
e2eが通ったのでunimplementedをけした
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoshiaki-Harada committed Oct 24, 2021
1 parent ba90f92 commit 9f15e41
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>com.uzabase</groupId>
<artifactId>playtest-json</artifactId>
<version>0.0.1</version>
<version>1.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 0 additions & 4 deletions e2e/specs/json/json_path.spec
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
# JsonPathのテスト

## JsonPathで文字列をAssertする
tags: unimplemented
* "$.key1.key2"が文字列の"test"であることをアサー卜できる

## JsonPathで真偽値をAssertする
tags: unimplmented
* "$.key1.key2"が真偽値の"true"であることをアサー卜できる

## JsonPathで整数値をAssertする
tags: unimplmented
* "$.key1.key2"が整数値の"1"であることをアサー卜できる

## JsonPathで小数値をAssertする
tags: unimplmented
* "$.key1.key2"が小数値の"1.0"であることをアサー卜できる
27 changes: 26 additions & 1 deletion json-assert/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.uzabase</groupId>
<artifactId>playtest-json</artifactId>
<version>0.0.1</version>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>playtest-json</name>
Expand Down Expand Up @@ -122,6 +122,31 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 9f15e41

Please sign in to comment.