socialforge/test/functional/memos_controller_test.rb

12 lines
231 B
Ruby
Raw Normal View History

2014-10-21 15:13:18 +08:00
require 'test_helper'
class MemosControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
def test_memo_create_fail
memo = Memo.create(:subject => nil)
assert true
end
end