mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
15 lines
305 B
Ruby
15 lines
305 B
Ruby
|
require 'test_helper'
|
||
|
require 'helpers/searchable_model_test_helper'
|
||
|
|
||
|
class MyModuleGroupTest < ActiveSupport::TestCase
|
||
|
include SearchableModelTestHelper
|
||
|
|
||
|
def setup
|
||
|
@module_group = my_module_groups(:wf1)
|
||
|
end
|
||
|
|
||
|
test "should validate with valid data" do
|
||
|
assert @module_group.valid?
|
||
|
end
|
||
|
end
|