Adding stub functional test files for all the controllers that should have tests written for them.
This commit is contained in:
parent
427becc1db
commit
79284559af
10 changed files with 80 additions and 0 deletions
8
test/functional/amf_controller_test.rb
Normal file
8
test/functional/amf_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class AmfControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/changeset_tag_controller_test.rb
Normal file
8
test/functional/changeset_tag_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class ChangesetTagControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/diary_entry_controller_test.rb
Normal file
8
test/functional/diary_entry_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class DiaryEntryControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/export_controller_test.rb
Normal file
8
test/functional/export_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class ExportControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/friend_controller_test.rb
Normal file
8
test/functional/friend_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class FriendControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/search_controller_test.rb
Normal file
8
test/functional/search_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class SearchControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/site_controller_test.rb
Normal file
8
test/functional/site_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class SiteControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/swf_controller_test.rb
Normal file
8
test/functional/swf_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class SwfControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/trace_controller_test.rb
Normal file
8
test/functional/trace_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class TraceControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
8
test/functional/user_controller_test.rb
Normal file
8
test/functional/user_controller_test.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class UserControllerTest < ActionController::TestCase
|
||||
# Replace this with your real tests.
|
||||
def test_truth
|
||||
assert true
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue