diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/incoming_messages.yml | 13 | ||||
-rw-r--r-- | test/unit/incoming_message_test.rb | 10 |
2 files changed, 23 insertions, 0 deletions
diff --git a/test/fixtures/incoming_messages.yml b/test/fixtures/incoming_messages.yml new file mode 100644 index 000000000..fe1186b0b --- /dev/null +++ b/test/fixtures/incoming_messages.yml @@ -0,0 +1,13 @@ +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html +one: + id: 1 + info_request_id: 1 + raw_data: MyText + created_at: 2007-10-29 17:22:21 + udpated_at: 2007-10-29 17:22:21 +two: + id: 2 + info_request_id: 1 + raw_data: MyText + created_at: 2007-10-29 17:22:21 + udpated_at: 2007-10-29 17:22:21 diff --git a/test/unit/incoming_message_test.rb b/test/unit/incoming_message_test.rb new file mode 100644 index 000000000..3a320cf93 --- /dev/null +++ b/test/unit/incoming_message_test.rb @@ -0,0 +1,10 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class IncomingMessageTest < Test::Unit::TestCase + fixtures :incoming_messages + + # Replace this with your real tests. + def test_truth + assert true + end +end |