cmd: rails generate redmine_plugin_model body_tracking column_view project:references name:string domain:integer rails generate migration CreateQuantitiesColumnViews quantity:references column_view:references
10 lines
187 B
Ruby
10 lines
187 B
Ruby
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
class ColumnViewTest < ActiveSupport::TestCase
|
|
|
|
# Replace this with your real tests.
|
|
def test_truth
|
|
assert true
|
|
end
|
|
end
|