summaryrefslogtreecommitdiff
path: root/examples/scala-js/test-suite/src/test/scala/scala/scalajs/testsuite/compiler/UnitTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'examples/scala-js/test-suite/src/test/scala/scala/scalajs/testsuite/compiler/UnitTest.scala')
-rw-r--r--examples/scala-js/test-suite/src/test/scala/scala/scalajs/testsuite/compiler/UnitTest.scala47
1 files changed, 47 insertions, 0 deletions
diff --git a/examples/scala-js/test-suite/src/test/scala/scala/scalajs/testsuite/compiler/UnitTest.scala b/examples/scala-js/test-suite/src/test/scala/scala/scalajs/testsuite/compiler/UnitTest.scala
new file mode 100644
index 0000000..8e2be64
--- /dev/null
+++ b/examples/scala-js/test-suite/src/test/scala/scala/scalajs/testsuite/compiler/UnitTest.scala
@@ -0,0 +1,47 @@
+/* __ *\
+** ________ ___ / / ___ __ ____ Scala.js Test Suite **
+** / __/ __// _ | / / / _ | __ / // __/ (c) 2013, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ |/_// /_\ \ http://scala-js.org/ **
+** /____/\___/_/ |_/____/_/ | |__/ /____/ **
+** |/____/ **
+\* */
+package scala.scalajs.testsuite.compiler
+
+import org.scalajs.jasminetest.JasmineTest
+import scala.scalajs.js
+
+object UnitTest extends JasmineTest {
+
+ describe("Unit primitive") {
+
+ it("should have toString()") {
+ expect(().toString()).toEqual("undefined")
+ expect(((): Any).toString()).toEqual("undefined")
+ }
+
+ it("should have hashCode()") {
+ expect(().hashCode()).toEqual(0)
+ expect(((): Any).hashCode()).toEqual(0)
+ expect(().##).toEqual(0)
+ }
+
+ it("should equal itself") {
+ expect(().equals(())).toBeTruthy
+ expect(((): Any).equals((): Any)).toBeTruthy
+ }
+
+ it("should not equal other values") {
+ def testAgainst(v: Any): Unit = {
+ expect(().equals(v)).toBeFalsy
+ expect(((): Any).equals(v)).toBeFalsy
+ }
+
+ testAgainst(0)
+ testAgainst(1)
+ testAgainst(null)
+ testAgainst(false)
+ testAgainst("")
+ }
+
+ }
+}