Browse Source

Initial commit

Rob Napier 10 years ago
commit
859179a3bc
5 changed files with 25 additions and 0 deletions
  1. 6 0
      .gitmodules
  2. 1 0
      RNCryptor-Spec
  3. 1 0
      Spec
  4. 14 0
      tests/rncryptor-test.html
  5. 3 0
      tests/rncryptor-test.js

+ 6 - 0
.gitmodules

@@ -0,0 +1,6 @@
+[submodule "RNCryptor-Spec"]
+	path = RNCryptor-Spec
+	url = git@github.com:RNCryptor/RNCryptor-Spec.git
+[submodule "Spec"]
+	path = Spec
+	url = git@github.com:RNCryptor/RNCryptor-Spec.git

+ 1 - 0
RNCryptor-Spec

@@ -0,0 +1 @@
+Subproject commit 3b4d4f70f8ff87a8f892562060b58df195d9305a

+ 1 - 0
Spec

@@ -0,0 +1 @@
+Subproject commit 3b4d4f70f8ff87a8f892562060b58df195d9305a

+ 14 - 0
tests/rncryptor-test.html

@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <meta charset="utf-8">
+  <title>RNCryptor Tests</title>
+  <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.13.0.css">
+</head>
+<body>
+  <div id="qunit"></div>
+  <div id="qunit-fixture"></div>
+  <script src="http://code.jquery.com/qunit/qunit-1.13.0.js"></script>
+  <script src="rncryptor-test.js"></script>
+</body>
+</html>

+ 3 - 0
tests/rncryptor-test.js

@@ -0,0 +1,3 @@
+test( "hello test", function() {
+  ok( 1 == "1", "Passed!" );
+});