class RuboCop::Cop::Chef::Deprecations::NodeDeepFetch

The node.deep_fetch method has been removed from Chef-Sugar, and must be replaced by the node.read API.

@example

### incorrect
node.deep_fetch("foo")

### correct
node.read("foo")

### incorrect
node.deep_fetch!("foo")

### correct
node.read!("foo")