removes testunit test as they where only stubs

pull/6827/head
Jens Ulferts 12 years ago
parent 8d89d24afa
commit 31e8f0322d
  1. 21
      test/fixtures/meeting_contents.yml
  2. 19
      test/fixtures/meeting_participants.yml
  3. 17
      test/fixtures/meetings.yml
  4. 8
      test/functional/meetings_controller_test.rb
  5. 5
      test/test_helper.rb
  6. 10
      test/unit/meeting_content_test.rb
  7. 10
      test/unit/meeting_participant_test.rb
  8. 10
      test/unit/meeting_test.rb

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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

@ -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
Loading…
Cancel
Save