diff --git a/test/fixtures/meeting_contents.yml b/test/fixtures/meeting_contents.yml deleted file mode 100644 index 2f2e3405d9..0000000000 --- a/test/fixtures/meeting_contents.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html -one: - id: 1 - type: MyString - meeting_id: 1 - author_id: 1 - text: MyText - comment: MyString - version: 1 - created_at: 2011-01-06 22:12:14 - updated_at: 2011-01-06 22:12:14 -two: - id: 2 - type: MyString - meeting_id: 1 - author_id: 1 - text: MyText - comment: MyString - version: 1 - created_at: 2011-01-06 22:12:14 - updated_at: 2011-01-06 22:12:14 \ No newline at end of file diff --git a/test/fixtures/meeting_participants.yml b/test/fixtures/meeting_participants.yml deleted file mode 100644 index 23462c739c..0000000000 --- a/test/fixtures/meeting_participants.yml +++ /dev/null @@ -1,19 +0,0 @@ -# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html -one: - id: 1 - user_id: 1 - meeting_id: 1 - meeting_role_id: 1 - email: MyString - name: MyString - created_at: 2011-01-08 23:07:21 - updated_at: 2011-01-08 23:07:21 -two: - id: 2 - user_id: 1 - meeting_id: 1 - meeting_role_id: 1 - email: MyString - name: MyString - created_at: 2011-01-08 23:07:21 - updated_at: 2011-01-08 23:07:21 \ No newline at end of file diff --git a/test/fixtures/meetings.yml b/test/fixtures/meetings.yml deleted file mode 100644 index 987e91ccbe..0000000000 --- a/test/fixtures/meetings.yml +++ /dev/null @@ -1,17 +0,0 @@ -# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html -one: - id: 1 - title: MyString - author_id: 1 - location: MyString - time: 2011-01-06 22:05:55 - created_at: 2011-01-06 22:05:55 - updated_at: 2011-01-06 22:05:55 -two: - id: 2 - title: MyString - author_id: 1 - location: MyString - time: 2011-01-06 22:05:55 - created_at: 2011-01-06 22:05:55 - updated_at: 2011-01-06 22:05:55 \ No newline at end of file diff --git a/test/functional/meetings_controller_test.rb b/test/functional/meetings_controller_test.rb deleted file mode 100644 index e3cded8b24..0000000000 --- a/test/functional/meetings_controller_test.rb +++ /dev/null @@ -1,8 +0,0 @@ -require File.dirname(__FILE__) + '/../test_helper' - -class MeetingsControllerTest < ActionController::TestCase - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/test_helper.rb b/test/test_helper.rb deleted file mode 100644 index bd1ed0c5d9..0000000000 --- a/test/test_helper.rb +++ /dev/null @@ -1,5 +0,0 @@ -# Load the normal Rails helper -require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper') - -# Ensure that we are using the temporary fixture path -Engines::Testing.set_fixture_path diff --git a/test/unit/meeting_content_test.rb b/test/unit/meeting_content_test.rb deleted file mode 100644 index 73e94d9e1c..0000000000 --- a/test/unit/meeting_content_test.rb +++ /dev/null @@ -1,10 +0,0 @@ -require File.dirname(__FILE__) + '/../test_helper' - -class MeetingContentTest < ActiveSupport::TestCase - fixtures :meeting_contents - - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/unit/meeting_participant_test.rb b/test/unit/meeting_participant_test.rb deleted file mode 100644 index 1d51a10d05..0000000000 --- a/test/unit/meeting_participant_test.rb +++ /dev/null @@ -1,10 +0,0 @@ -require File.dirname(__FILE__) + '/../test_helper' - -class MeetingParticipantTest < ActiveSupport::TestCase - fixtures :meeting_participants - - # Replace this with your real tests. - def test_truth - assert true - end -end diff --git a/test/unit/meeting_test.rb b/test/unit/meeting_test.rb deleted file mode 100644 index 49136a8348..0000000000 --- a/test/unit/meeting_test.rb +++ /dev/null @@ -1,10 +0,0 @@ -require File.dirname(__FILE__) + '/../test_helper' - -class MeetingTest < ActiveSupport::TestCase - fixtures :meetings - - # Replace this with your real tests. - def test_truth - assert true - end -end