gitlab-org--gitlab-foss/spec/helpers/tree_helper_spec.rb

29 lines
737 B
Ruby
Raw Normal View History

2015-01-10 20:37:48 +00:00
require 'spec_helper'
describe TreeHelper do
describe 'flatten_tree' do
let(:project) { create(:project) }
2015-06-22 20:00:54 +00:00
before do
@repository = project.repository
@commit = project.commit("e56497bb")
2015-06-22 20:00:54 +00:00
end
2015-01-10 20:37:48 +00:00
context "on a directory containing more than one file/directory" do
let(:tree_item) { double(name: "files", path: "files") }
it "should return the directory name" do
expect(flatten_tree(tree_item)).to match('files')
2015-01-10 20:37:48 +00:00
end
end
context "on a directory containing only one directory" do
let(:tree_item) { double(name: "foo", path: "foo") }
it "should return the flattened path" do
expect(flatten_tree(tree_item)).to match('foo/bar')
2015-01-10 20:37:48 +00:00
end
end
end
end