mirror of
https://github.com/cliffe/BreakEscape.git
synced 2026-02-20 13:50:46 +00:00
- Updated NPC ink loading tests to ensure proper handling of missing story files. - Adjusted lazy loading tests for rooms to enhance clarity and maintainability. - Enhanced unlock system tests by adding inventory checks for keys. - Refined filtered scenario tests to ensure accurate preservation of game state. - Improved game model tests to validate unlock functionality with various inventory scenarios.
7 lines
165 B
Ruby
7 lines
165 B
Ruby
namespace :break_escape do
|
|
desc "Load BreakEscape seed data"
|
|
task seed: :environment do
|
|
load File.join(BreakEscape::Engine.root, 'db', 'seeds.rb')
|
|
end
|
|
end
|