diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fabricators/tag_fabricator.rb | 3 | ||||
-rw-r--r-- | spec/models/tag_spec.rb | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/spec/fabricators/tag_fabricator.rb b/spec/fabricators/tag_fabricator.rb new file mode 100644 index 000000000..d83040990 --- /dev/null +++ b/spec/fabricators/tag_fabricator.rb @@ -0,0 +1,3 @@ +Fabricator(:tag) do + name "MyString" +end diff --git a/spec/models/tag_spec.rb b/spec/models/tag_spec.rb new file mode 100644 index 000000000..0d0fcb057 --- /dev/null +++ b/spec/models/tag_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe Tag, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end |