thingspeak/spec/factories/plugin.rb
2014-02-17 12:05:39 -05:00

12 lines
201 B
Ruby

FactoryGirl.define do
factory :plugin do
name "Plugin Name"
user_id 1
html = "<html/>"
css = "<style/>"
js = "<script/>"
private_flag = true
# association :user
end
end