Sha256: 77e1ba110784146ced1a025eea4e1553ff230fae26448bed5a031660147c62fa

Contents?: true

Size: 697 Bytes

Versions: 9

Compression:

Stored size: 697 Bytes

Contents

# frozen_string_literal: true

require "spec_helper"

module Fusuma
  module Plugin
    module Appmatcher
      module GnomeExtensions
        RSpec.describe Installer do
          describe "#install" do
            it "should copy file to users dir"
          end
          describe "#uninstall" do
            context "when extension is NOT installed" do
              it "should remove file to users dir"
            end
            context "when extension is NOT installed" do
              it "should NOT execute"
            end
          end
          describe "#installed?" do
            it "check extension is in the installed path"
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fusuma-plugin-appmatcher-0.6.0 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.5.0 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.4.0 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.3.1 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.3.0 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.2.3 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.2.2 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.2.1 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb
fusuma-plugin-appmatcher-0.2.0 spec/fusuma/plugin/appmatcher/gnome_extensions/installer_spec.rb