discourse/migrations/spec/lib/migrations_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
223 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe ::Migrations do
describe ".root_path" do
it "returns the root path" do
expect(described_class.root_path).to eq(File.expand_path("../..", __dir__))
end
end
end