Adding stub functional test files for all the controllers that should have tests written for them.

This commit is contained in:
Shaun McDonald 2008-10-28 12:49:51 +00:00
parent 427becc1db
commit 79284559af
10 changed files with 80 additions and 0 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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