mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
Fix tests
This commit is contained in:
parent
8325ed78ef
commit
b31dc9d0c2
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ class FileScraperTest < MiniTest::Spec
|
|||
end
|
||||
|
||||
it "reads a file" do
|
||||
mock(scraper).read_file(path)
|
||||
mock(scraper).read_file(File.join(ROOT_PATH, 'docs/scraper', path))
|
||||
result
|
||||
end
|
||||
|
||||
|
@ -165,7 +165,7 @@ class FileScraperTest < MiniTest::Spec
|
|||
|
||||
describe "#read_file" do
|
||||
let :result do
|
||||
scraper.send :read_file, 'file'
|
||||
scraper.send :read_file, File.join(ROOT_PATH, 'docs', 'scraper', 'file')
|
||||
end
|
||||
|
||||
it "returns the file's content when the file exists in the source directory" do
|
||||
|
|
Loading…
Reference in a new issue