test/test_subclass.rb in parse_resource-0.2.0 vs test/test_subclass.rb in parse_resource-1.0.0

- old
+ new

@@ -1,14 +1,29 @@ \ No newline at end of file +require 'helper' + +class Post < ParseResource + +end + +class TestParseResource < Test::Unit::TestCase + def setup + @p = ParseResouce.new + end + + def test_foo_method + assert_equal @p.foo, "nothing yet to see here" + end +end