Move non-empty files from test dir to spec and adopt specs

Signed-off-by: Sebastian Serth <Sebastian.Serth@student.hpi.de>
This commit is contained in:
Sebastian Serth
2018-09-11 15:21:24 +02:00
parent 838ba994ec
commit ff24a0bf0b
15 changed files with 104 additions and 144 deletions

View File

@ -0,0 +1,6 @@
FactoryBot.define do
factory :error_template_attribute do
key { "MyString" }
regex { "MyString" }
end
end

View File

@ -0,0 +1,7 @@
FactoryBot.define do
factory :error_template do
execution_environment { nil }
name { "MyString" }
signature { "MyString" }
end
end

View File

@ -0,0 +1,7 @@
FactoryBot.define do
factory :structured_error_attribute do
structured_error { nil }
error_template_attribute { nil }
value { "MyString" }
end
end

View File

@ -0,0 +1,6 @@
FactoryBot.define do
factory :structured_error do
error_template { nil }
submission { nil }
end
end