diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-14 20:59:26 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-14 20:59:26 +0100 |
commit | 3b81baaaaf51ff1c70fb1f865eef07fdb33a5950 (patch) | |
tree | fd3c5f038bdc3dcf08c3747220027160084329de /spec | |
parent | 40a40537326aa168d20324bd8bd0e979d5083570 (diff) |
Adding POST /api/v1/reports API, and a UI for submitting reports
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fabricators/report_fabricator.rb | 4 | ||||
-rw-r--r-- | spec/models/report_spec.rb | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/spec/fabricators/report_fabricator.rb b/spec/fabricators/report_fabricator.rb new file mode 100644 index 000000000..b9fa360a7 --- /dev/null +++ b/spec/fabricators/report_fabricator.rb @@ -0,0 +1,4 @@ +Fabricator(:report) do + comment "You nasty" + action_taken false +end diff --git a/spec/models/report_spec.rb b/spec/models/report_spec.rb new file mode 100644 index 000000000..ade53cffa --- /dev/null +++ b/spec/models/report_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe Report, type: :model do + +end |