Skip to content

Commit

Permalink
Integration spec verifies we get result for the right testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelkiessling committed Jan 20, 2016
1 parent e3934a1 commit 7263743
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions api/test/IntegrationSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ class IntegrationSpec extends PlaySpec with OneBrowserPerSuite with OneServerPer
""".stripMargin
)

// Different testcase
session.execute(
"""
|INSERT INTO statistics
| (testcase_id, testresult_id, datetime_run, runtime_milliseconds, number_of_200, number_of_400, number_of_500)
| VALUES
| ('testcase2', 'testresult1', '2016-01-07 04:32:12+0000', 333, 123, 456, 789);
""".stripMargin
)

session.execute(
"""
|INSERT INTO statistics
Expand Down

0 comments on commit 7263743

Please sign in to comment.