commands: rails generate redmine_plugin_model body_tracking measurement name:string hidden:boolean source:references rails generate redmine_plugin_model body_tracking readout measurement:references quantity:references unit:references rails generate redmine_plugin_model body_tracking readout_value readout:references value:decimal taken_at:timestamp
10 lines
184 B
Ruby
10 lines
184 B
Ruby
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
class ReadoutTest < ActiveSupport::TestCase
|
|
|
|
# Replace this with your real tests.
|
|
def test_truth
|
|
assert true
|
|
end
|
|
end
|