mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
14 lines
305 B
Ruby
14 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
|