2024-10-06 12:30:41 +00:00
|
|
|
require "../spec_helper"
|
|
|
|
require "../../src/commands/mapping_edit"
|
|
|
|
|
|
|
|
describe GX::Commands::MappingEdit do
|
|
|
|
context "Initialization" do
|
2024-10-27 21:09:47 +00:00
|
|
|
it "initializes with a mock FileSystemManager" do
|
|
|
|
config = GX::Config.new
|
|
|
|
command = GX::Commands::MappingEdit.new(config)
|
|
|
|
command.should be_a(GX::Commands::MappingEdit)
|
|
|
|
end
|
2024-10-06 12:30:41 +00:00
|
|
|
end
|
|
|
|
end
|