aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/outgoing_messages.yml11
-rw-r--r--test/unit/outgoing_message_test.rb10
2 files changed, 21 insertions, 0 deletions
diff --git a/test/fixtures/outgoing_messages.yml b/test/fixtures/outgoing_messages.yml
new file mode 100644
index 000000000..e6b5d7e2a
--- /dev/null
+++ b/test/fixtures/outgoing_messages.yml
@@ -0,0 +1,11 @@
+# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
+one:
+ id: 1
+ body: MyText
+ created_at: 2007-09-10 09:55:11
+ updated_at: 2007-09-10 09:55:11
+two:
+ id: 2
+ body: MyText
+ created_at: 2007-09-10 09:55:11
+ updated_at: 2007-09-10 09:55:11
diff --git a/test/unit/outgoing_message_test.rb b/test/unit/outgoing_message_test.rb
new file mode 100644
index 000000000..12b55e5d0
--- /dev/null
+++ b/test/unit/outgoing_message_test.rb
@@ -0,0 +1,10 @@
+require File.dirname(__FILE__) + '/../test_helper'
+
+class OutgoingMessageTest < Test::Unit::TestCase
+ fixtures :outgoing_messages
+
+ # Replace this with your real tests.
+ def test_truth
+ assert true
+ end
+end