Sha256: 98aeb70cb3606f070851224a29bf243eba6647a44b66dc816e9f69260a9a9c8b
Contents?: true
Size: 457 Bytes
Versions: 19
Compression:
Stored size: 457 Bytes
Contents
module Souls class Delete < Thor desc "rspec_mutation [CLASS_NAME]", "Delete Rspec Mutation Test from schema.rb" def rspec_mutation(class_name) singularized_class_name = class_name.singularize file_path = "./spec/mutations/base/#{singularized_class_name}_spec.rb" FileUtils.rm_f(file_path) puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }]) file_path end end end
Version data entries
19 entries across 19 versions & 1 rubygems