aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/xyz/driver/core/CoreTest.scala
diff options
context:
space:
mode:
authorHao Huang <hhuang@driver.xyz>2017-02-10 16:29:28 -0800
committerHao Huang <hhuang@driver.xyz>2017-02-10 16:29:28 -0800
commitc67fb0d8e6779191620d5485f21003a2a0d9573d (patch)
treeca84f159d76ea6e751caa5f06afa64acff4ca837 /src/test/scala/xyz/driver/core/CoreTest.scala
parent1e65b8ad5967d41dc56d7dce015f4bb6c1af26dd (diff)
downloaddriver-core-c67fb0d8e6779191620d5485f21003a2a0d9573d.tar.gz
driver-core-c67fb0d8e6779191620d5485f21003a2a0d9573d.tar.bz2
driver-core-c67fb0d8e6779191620d5485f21003a2a0d9573d.zip
Move time/date related tests out of CoreTest
Diffstat (limited to 'src/test/scala/xyz/driver/core/CoreTest.scala')
-rw-r--r--src/test/scala/xyz/driver/core/CoreTest.scala28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/scala/xyz/driver/core/CoreTest.scala b/src/test/scala/xyz/driver/core/CoreTest.scala
index 08b1df2..bb4742a 100644
--- a/src/test/scala/xyz/driver/core/CoreTest.scala
+++ b/src/test/scala/xyz/driver/core/CoreTest.scala
@@ -63,34 +63,6 @@ class CoreTest extends FlatSpec with Matchers with MockitoSugar {
(xid: Id[X]) should be(zid: Id[Z])
}
- "Time" should "use TimeZone correctly when converting to Date" in {
-
- import time._
-
- val EST = java.util.TimeZone.getTimeZone("EST")
- val PST = java.util.TimeZone.getTimeZone("PST")
-
- val timestamp = {
- import java.util.Calendar
- val cal = Calendar.getInstance(EST)
- cal.set(Calendar.HOUR_OF_DAY, 1)
- Time(cal.getTime().getTime())
- }
-
- textualDate(EST)(timestamp) should not be textualDate(PST)(timestamp)
- timestamp.toDate(EST) should not be timestamp.toDate(PST)
- }
-
- "Date" should "correctly convert to and from String" in {
-
- import xyz.driver.core.generators.nextDate
- import date._
-
- for (date <- 1 to 100 map (_ => nextDate())) {
- Some(date) should be(Date.fromString(date.toString))
- }
- }
-
"Name" should "have equality and ordering working correctly" in {
(Name[String]("foo") === Name[String]("foo")) should be(true)