File: //opt/alt/ruby40/share/gems/gems/bundler-4.0.10/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
# frozen_string_literal: true
RSpec.describe <%= config[:constant_name] %> do
it "has a version number" do
expect(<%= config[:constant_name] %>::VERSION).not_to be nil
end
<%- if config[:ext] == 'rust' -%>
it "can call into Rust" do
result = <%= config[:constant_name] %>.hello("world")
expect(result).to be("Hello earth, from Rust!")
end
<%- else -%>
it "does something useful" do
expect(false).to eq(true)
end
<%- end -%>
end