Sha256: ac1f6f6cd4d0effdbc38084bef532ca98cfaf5f5dcebc637beabf4f3d27a7a11

Contents?: true

Size: 1.38 KB

Versions: 20

Compression:

Stored size: 1.38 KB

Contents

---
title: About the cran Resource
platform: linux
---

# cran

Use the `cran` InSpec audit resource to test R modules that are installed from CRAN package repository.

<br>

## Availability

### Installation

This resource is distributed along with InSpec itself. You can use it automatically.

### Version

This resource first became available in v1.43.5 of InSpec.

## Syntax

A `cran` resource block declares a package and (optionally) a package version:

    describe cran('package_name') do
      it { should be_installed }
    end

where

* `'package_name'` is the name of the package, such as `'DBI'`
* `be_installed` tests to see if the package described above is installed

<br>

## Examples

The following examples show how to use this InSpec audit resource.

### Test if DBI is installed on the system

    describe cran('DBI') do
      it { should be_installed }
    end

### Test if DBI 0.5.1 is installed on the system

    describe cran('DBI') do
      it { should be_installed }
      its('version') { should eq '0.5.1' }
    end

<br>

## Property Examples

### version

The `version` property tests if the named package version is on the system:

    its('version') { should eq '1.2.3' }

<br>

## Matchers

This InSpec audit resource has the following matchers:

### be_installed

The `be_installed` matcher tests if the named package is installed on the system:

    it { should be_installed }

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
inspec-core-2.3.10 docs/resources/cran.md.erb
inspec-2.3.10 docs/resources/cran.md.erb
inspec-core-2.3.5 docs/resources/cran.md.erb
inspec-2.3.5 docs/resources/cran.md.erb
inspec-core-2.3.4 docs/resources/cran.md.erb
inspec-2.3.4 docs/resources/cran.md.erb
inspec-core-2.2.112 docs/resources/cran.md.erb
inspec-2.2.112 docs/resources/cran.md.erb
inspec-core-2.2.102 docs/resources/cran.md.erb
inspec-2.2.102 docs/resources/cran.md.erb
inspec-core-2.2.101 docs/resources/cran.md.erb
inspec-2.2.101 docs/resources/cran.md.erb
inspec-core-2.2.78 docs/resources/cran.md.erb
inspec-2.2.78 docs/resources/cran.md.erb
inspec-core-2.2.70 docs/resources/cran.md.erb
inspec-2.2.70 docs/resources/cran.md.erb
inspec-core-2.2.64 docs/resources/cran.md.erb
inspec-2.2.64 docs/resources/cran.md.erb
inspec-core-2.2.61 docs/resources/cran.md.erb
inspec-2.2.61 docs/resources/cran.md.erb