Sha256: 82ef59ee11a3138f8b89e865c6e0e0d0e8d267cc0bacbb3a7f6fee7134428ed8
Contents?: true
Size: 889 Bytes
Versions: 68
Compression:
Stored size: 889 Bytes
Contents
module SOULs class DB < Thor desc "rspec_model [CLASS_NAME]", "Generate Rspec Model Test from schema.rb" def rspec_model(class_name) file_dir = "./spec/models/" FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir) file_path = "./spec/models/#{class_name}_spec.rb" return "RspecModel already exist! #{file_path}" if File.exist?(file_path) File.open(file_path, "w") do |f| f.write(<<~TEXT) RSpec.describe "#{class_name.camelize} Model テスト", type: :model do describe "#{class_name.camelize} データを書き込む" do it "valid #{class_name.camelize} Model" do expect(FactoryBot.build(:#{class_name.singularize})).to be_valid end end end TEXT end SOULs::Painter.create_file(file_path.to_s) file_path end end end
Version data entries
68 entries across 68 versions & 1 rubygems