DEV: Add test for EmberCli#ember_version (#18140)

Followup to 6570fed175
This commit is contained in:
David Taylor 2022-08-30 20:33:08 +01:00 committed by GitHub
parent daa3f96d54
commit 7eaa4f6ad3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# frozen_string_literal: true
describe EmberCli do
describe "#ember_version" do
it "works" do
expect(EmberCli.ember_version).to match(/\A\d+\.\d+/)
end
end
end