works but need some cleanup

This commit is contained in:
Wojciech Todryk 2011-06-24 23:48:08 +02:00
parent 0ec83db287
commit e40a859b7d
752 changed files with 4866 additions and 27923 deletions

View file

@ -1,14 +0,0 @@
require File.dirname(__FILE__) + '/../test_helper'
class ExpressionTest < Test::Unit::TestCase
fixtures :expressions
def setup
@expression = Expression.find(1)
end
# Replace this with your real tests.
def test_truth
assert_kind_of Expression, @expression
end
end

View file

@ -1,14 +0,0 @@
require File.dirname(__FILE__) + '/../test_helper'
class FilterTest < Test::Unit::TestCase
fixtures :filters
def setup
@filter = Filter.find(1)
end
# Replace this with your real tests.
def test_truth
assert_kind_of Filter, @filter
end
end

View file

@ -1,14 +0,0 @@
require File.dirname(__FILE__) + '/../test_helper'
class UserTest < Test::Unit::TestCase
fixtures :users
def setup
@user = User.find(1)
end
# Replace this with your real tests.
def test_truth
assert_kind_of User, @user
end
end