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