pull/1024/head
Jasper van Merle 6 years ago
parent 8325ed78ef
commit b31dc9d0c2

@ -63,7 +63,7 @@ class FileScraperTest < MiniTest::Spec
end end
it "reads a file" do it "reads a file" do
mock(scraper).read_file(path) mock(scraper).read_file(File.join(ROOT_PATH, 'docs/scraper', path))
result result
end end
@ -165,7 +165,7 @@ class FileScraperTest < MiniTest::Spec
describe "#read_file" do describe "#read_file" do
let :result do let :result do
scraper.send :read_file, 'file' scraper.send :read_file, File.join(ROOT_PATH, 'docs', 'scraper', 'file')
end end
it "returns the file's content when the file exists in the source directory" do it "returns the file's content when the file exists in the source directory" do

Loading…
Cancel
Save