Sha256: 1fbf2b3fd3ea0d19628bddc5658509cc5f3973c8ce44e1e2fd2f124413336221

Contents?: true

Size: 965 Bytes

Versions: 2

Compression:

Stored size: 965 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

describe "RestfulAcl" do

  describe "when used in a RESTful resource" do

    before do
      @widget = Widget.new
    end

    describe "handling GET index" do
      it "does something" do
      end
    end

    describe "handling GET show" do

    end

    describe "handling GET new" do

    end

    describe "handling GET edit" do

    end

    describe "handling POST create" do

    end

    describe "handling PUT update" do

    end

    describe "handling DELETE destroy" do

    end

  end

  describe "when used in a Singleton resource" do

    describe "handling GET index" do

    end

    describe "handling GET show" do

    end

    describe "handling GET new" do

    end

    describe "handling GET edit" do

    end

    describe "handling POST create" do

    end

    describe "handling PUT update" do

    end

    describe "handling DELETE destroy" do

    end


  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
restful_acl-2.1.0 spec/restful_acl_spec.rb
restful_acl-2.1 spec/restful_acl_spec.rb