diff --git a/spec/support/files/message_with_path.xml b/spec/fixtures/message_with_path.xml similarity index 100% rename from spec/support/files/message_with_path.xml rename to spec/fixtures/message_with_path.xml diff --git a/spec/support/files/message_without_line.xml b/spec/fixtures/message_without_line.xml similarity index 100% rename from spec/support/files/message_without_line.xml rename to spec/fixtures/message_without_line.xml diff --git a/spec/support/files/message_without_path.xml b/spec/fixtures/message_without_path.xml similarity index 100% rename from spec/support/files/message_without_path.xml rename to spec/fixtures/message_without_path.xml diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 14fd02b4..1c8ce464 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -8,6 +8,6 @@ end def load_fixture(fixture_name) - path = File.join(%w(spec support files), fixture_name) + path = File.join(%w(spec fixtures), fixture_name) File.read(path).strip end