984a5dd4ce
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Jason Zimdars <jz@37signals.com>
12 lines
219 B
Ruby
12 lines
219 B
Ruby
require "test_helper"
|
|
|
|
class PlanTest < ActiveSupport::TestCase
|
|
test "free plan is free" do
|
|
assert Plan[:free_v1].free?
|
|
end
|
|
|
|
test "monthly plan is not free" do
|
|
assert_not Plan[:monthly_v1].free?
|
|
end
|
|
end
|