Rename library/bigdecimal/new_spec.rb -> BigDecimal_spec.rb · ruby/spec@cbaa0e4 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit cbaa0e4
authored and
committed
Rename library/bigdecimal/new_spec.rb -> BigDecimal_spec.rb
Modified describe text from `BigDecimal#new` to `Kernel#BigDecimal`
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
1 | 1 | require_relative '../../spec_helper' |
2 | 2 | require 'bigdecimal' |
3 | 3 | |
4 | -describe "BigDecimal.new" do | |
4 | +describe "Kernel#BigDecimal" do | |
5 | 5 | |
6 | 6 | it "creates a new object of class BigDecimal" do |
7 | 7 | BigDecimal("3.14159").should be_kind_of(BigDecimal) |