diff --git a/.editorconfig b/.editorconfig index 8de6d7957c..b3cb08d508 100644 --- a/.editorconfig +++ b/.editorconfig @@ -24,7 +24,7 @@ insert_final_newline = false # with a line that has trailing white space. Many of our recorded # tests use strings with trailing white space to represent the final # document contents. For example -# data/fixtures/recorded/languages/ruby/changeCondition.yml +# resources/fixtures/recorded/languages/ruby/changeCondition.yml trim_trailing_whitespace = false [Makefile] diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs deleted file mode 100644 index 62b1ea3801..0000000000 --- a/.git-blame-ignore-revs +++ /dev/null @@ -1,3 +0,0 @@ -4c0676728c0ccfdcc4b6593a4a13ac49fc20a82a -619d7f7271506c7fd5913cca68574f722ab392d8 -4dc746c3e3b270d94065cf770274b3f8cae8eb6f diff --git a/.github/actions/lint-lua-ls/action.yml b/.github/actions/lint-lua-ls/action.yml index 4a6aceb82f..ed4edf8b3f 100644 --- a/.github/actions/lint-lua-ls/action.yml +++ b/.github/actions/lint-lua-ls/action.yml @@ -9,5 +9,5 @@ runs: - uses: DeterminateSystems/magic-nix-cache-action@v2 - run: nix profile add --accept-flake-config .#lua-language-server shell: bash - - run: scripts/lint-lua-ls.sh + - run: resources/scripts/lint-lua-ls.sh shell: bash diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ae159f8ed1..0917002d47 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -94,7 +94,7 @@ jobs: git config commit.gpgsign true - name: Push compiled files to cursorless.nvim plugin repo - run: bash -x scripts/deploy-cursorless-nvim.sh ${{ env.STAGING_DIRECTORY }} + run: bash -x resources/scripts/deploy-cursorless-nvim.sh ${{ env.STAGING_DIRECTORY }} push-cursorless-talon: name: Push cursorless-talon subrepo @@ -127,4 +127,4 @@ jobs: git config commit.gpgsign true - name: Push cursorless-talon subrepo - run: bash -x scripts/deploy-cursorless-talon.sh + run: bash -x resources/scripts/deploy-cursorless-talon.sh diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ee24f5bab0..c3900bcff0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: run: pnpm --color lint - name: Forbid TODO - run: ./scripts/forbid-todo.sh + run: ./resources/scripts/forbid-todo.sh build-website: name: Build Website @@ -44,7 +44,7 @@ jobs: uses: ./.github/actions/setup-node - name: Build website - run: bash -x scripts/build-and-assemble-website.sh + run: bash -x resources/scripts/build-and-assemble-website.sh test-main: name: Test @@ -164,7 +164,7 @@ jobs: run: pnpm --color -F '!@cursorless/app-web' -F '!@cursorless/app-web-docs' build - name: Install neovim dependencies - run: bash -x scripts/install-neovim-dependencies.sh + run: bash -x resources/scripts/install-neovim-dependencies.sh - name: Setup neovim uses: rhysd/action-setup-vim@v1 diff --git a/.luarc.json b/.luarc.json index 9415a8c8a2..2183fa73da 100644 --- a/.luarc.json +++ b/.luarc.json @@ -2,5 +2,10 @@ "runtime.version": "Lua 5.1", "diagnostics.ignoredFiles": "Disable", "diagnostics.globals": ["vim", "talon", "it", "describe"], - "workspace.ignoreDir": ["data/playground/lua/", ".luarocks", ".lua", "dist"] + "workspace.ignoreDir": [ + "resources/playground/lua/", + ".luarocks", + ".lua", + "dist" + ] } diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b128a57ae6..9a2f4d4c89 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ minimum_pre_commit_version: "3.2.0" ci: autoupdate_schedule: monthly -exclude: /vendor/|^data/playground/ +exclude: /vendor/|^resources/playground/ repos: - repo: meta hooks: @@ -33,7 +33,7 @@ repos: - id: detect-private-key - id: end-of-file-fixer exclude_types: [svg] - exclude: ^patches/.*\.patch$|\.scope$ + exclude: ^resources/patches/.*\.patch$|\.scope$ - id: fix-byte-order-marker - id: forbid-submodules - id: mixed-line-ending @@ -42,8 +42,8 @@ repos: # with a line that has trailing white space. Many of our recorded # tests use strings with trailing white space to represent the final # document contents. For example - # data/fixtures/recorded/languages/ruby/changeCondition.yml - exclude: ^data/fixtures/recorded/.*/[^/]*\.yml$|\.scope$|/generated/|^patches/ + # resources/fixtures/recorded/languages/ruby/changeCondition.yml + exclude: ^resources/fixtures/recorded/.*/[^/]*\.yml$|\.scope$|/generated/|^resources/patches/ - repo: local hooks: @@ -67,7 +67,7 @@ repos: hooks: - id: format-recorded-tests name: format-recorded-tests - files: ^data/fixtures/recorded/.*/[^/]*\.yml$ + files: ^resources/fixtures/recorded/.*/[^/]*\.yml$ language: system entry: pnpm transform-recorded-tests @@ -75,7 +75,7 @@ repos: hooks: - id: check-recorded-test-marks name: check-recorded-test-marks - files: ^data/fixtures/recorded/.*/[^/]*\.yml$ + files: ^resources/fixtures/recorded/.*/[^/]*\.yml$ language: system entry: pnpm transform-recorded-tests --check-marks diff --git a/.prettierignore b/.prettierignore index 6173ea66e4..885990165a 100644 --- a/.prettierignore +++ b/.prettierignore @@ -12,7 +12,7 @@ /packages/lib-engine/src/snippets/vendor/ # We use our own format for our recorded yaml tests to keep them compact -/data/fixtures/recorded/**/*.yml +/resources/fixtures/recorded/**/*.yml # Anywhere node_modules/ diff --git a/AGENTS.md b/AGENTS.md index fb38f2cefd..50991c1f48 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -10,8 +10,8 @@ - Main extension code is in `/packages/app-vscode/` - Engine code is in `/packages/lib-engine/` -- Tests are in `data/fixtures/recorded/` -- Language-specific parsing is defined in the `queries/*.scm` files +- Tests are in `resources/fixtures/recorded` and `resources/fixtures/scopes` +- Language-specific parsing is defined in the `resources/queries/*.scm` files ## Build and Test @@ -33,7 +33,7 @@ When documenting actions or modifiers: ## Implementation Notes - Many actions (`drop`, `float`, `puff`) work with both line and non-line targets -- Always check test fixtures in `/data/fixtures/recorded/` to understand behavior +- Always check test fixtures in `/resources/fixtures/recorded` to understand behavior - Implementation for many actions is in `/packages/lib-engine/src/actions/` - After running Python scripts or tests, delete any `__pycache__` directories and `.pyc` files created under the repository root. diff --git a/NOTICE.md b/NOTICE.md deleted file mode 100644 index c7c2b92f0c..0000000000 --- a/NOTICE.md +++ /dev/null @@ -1,22 +0,0 @@ -# Attributions - -This file contains attributions for the various open source software used here. - -## NPM modules - -Cursorless is grateful for the contributions of all the open source contributors who have created the libraries on which we depend. See [the csv](third-party-licenses.csv) for more info. - -## README - -### Initial template - -The [README](README.md) was originally geneorated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator). - -### Badge icons - -The following badge icons came from FontAwesome ([license](https://fontawesome.com/license)): - -- https://fontawesome.com/v5.15/icons/wrench?style=solid -- https://fontawesome.com/v5.15/icons/book?style=solid -- https://fontawesome.com/v5.15/icons/code-branch?style=solid -- https://fontawesome.com/v5.15/icons/balance-scale?style=solid diff --git a/README.md b/README.md index 2dd2876b3b..813c63754a 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ Checkout the [docs](https://www.cursorless.org/docs/) and [videos](https://www.y And I heard you like GIFs? -![Curly repack ox](images/curlyRepackOx.gif) -![Move arg air and each to after drum](images/moveArgAirAndEachToAfterDrum.gif) -![Chuck tail red pipe slice past end of file](images/chuckTailRedPipeSlicePastEndOfFile.gif) +![Curly repack ox](resources/images/curlyRepackOx.gif) +![Move arg air and each to after drum](resources/images/moveArgAirAndEachToAfterDrum.gif) +![Chuck tail red pipe slice past end of file](resources/images/chuckTailRedPipeSlicePastEndOfFile.gif) ## Installation @@ -59,7 +59,3 @@ See [contributing](https://www.cursorless.org/docs/contributing/). ## Change Log See [CHANGELOG.md](CHANGELOG.md). - -## Attributions - -See [NOTICE.md](NOTICE.md). diff --git a/eslint.config.mts b/eslint.config.mts index f3faa7fe54..0715d67d86 100644 --- a/eslint.config.mts +++ b/eslint.config.mts @@ -18,7 +18,7 @@ const ignoresConfig: ConfigWithExtends = { ignores: [ // Workspace ".git/**", - "data/playground/**", + "resources/playground/**", // Packages "packages/*/out/**", "packages/*/dist/**", @@ -145,7 +145,7 @@ const disabledTypeCheckConfig: ConfigWithExtends = { "**/vite.config.ts", "eslint.config.mts", "prettier.config.cjs", - "typings/**", + "resources/typings/**", "**/*.js", "**/*.mjs", ], diff --git a/netlify.toml b/netlify.toml index 8545f90866..effcc5868c 100644 --- a/netlify.toml +++ b/netlify.toml @@ -3,5 +3,5 @@ # https://app.netlify.com/projects/cursorless/deploys [build] - command = "./scripts/build-and-assemble-website.sh" + command = "./resources/scripts/build-and-assemble-website.sh" publish = "dist/app-web" diff --git a/package.json b/package.json index 2d9263e25c..cf714b7916 100644 --- a/package.json +++ b/package.json @@ -58,8 +58,8 @@ }, "pnpm": { "patchedDependencies": { - "@types/nearley@2.11.5": "patches/@types__nearley@2.11.5.patch", - "nearley@2.20.1": "patches/nearley@2.20.1.patch" + "@types/nearley@2.11.5": "resources/patches/@types__nearley@2.11.5.patch", + "nearley@2.20.1": "resources/patches/nearley@2.20.1.patch" }, "overrides": { "@swc/helpers": "^0.5.17", diff --git a/init.lua b/packages/app-neovim/init.lua similarity index 100% rename from init.lua rename to packages/app-neovim/init.lua diff --git a/packages/app-neovim/scripts/debug-neovim.bat b/packages/app-neovim/scripts/debug-neovim.bat index 1994f0f67c..f24dc95e1c 100644 --- a/packages/app-neovim/scripts/debug-neovim.bat +++ b/packages/app-neovim/scripts/debug-neovim.bat @@ -1,3 +1,3 @@ REM executing this batch script requires .bat to be registered to be opened by cmd.exe REM which means no other software has overriden this -nvim -u %CURSORLESS_REPO_ROOT%/init.lua +nvim -u %CURSORLESS_REPO_ROOT%/packages/app-neovim/init.lua diff --git a/packages/app-neovim/scripts/debug-neovim.sh b/packages/app-neovim/scripts/debug-neovim.sh index c8aeef8e59..f3d2a83821 100755 --- a/packages/app-neovim/scripts/debug-neovim.sh +++ b/packages/app-neovim/scripts/debug-neovim.sh @@ -10,4 +10,4 @@ export NVIM_NODE_LOG_FILE="${workspaceFolder}/packages/app-neovim/out/nvim_node. export NVIM_NODE_LOG_LEVEL="info" export CURSORLESS_MODE="${cursorless_mode}" -command nvim -u "${workspaceFolder}/init.lua" +command nvim -u "${workspaceFolder}/packages/app-neovim/init.lua" diff --git a/packages/app-neovim/tsconfig.json b/packages/app-neovim/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/app-neovim/tsconfig.json +++ b/packages/app-neovim/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/app-talonjs/tsconfig.json b/packages/app-talonjs/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/app-talonjs/tsconfig.json +++ b/packages/app-talonjs/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/app-vscode/src/ide/vscode/hats/VscodeHatRenderer.ts b/packages/app-vscode/src/ide/vscode/hats/VscodeHatRenderer.ts index 2dde547a4f..2804432fb4 100644 --- a/packages/app-vscode/src/ide/vscode/hats/VscodeHatRenderer.ts +++ b/packages/app-vscode/src/ide/vscode/hats/VscodeHatRenderer.ts @@ -378,7 +378,7 @@ export default class VscodeHatRenderer { /** * Creates an SVG from the hat SVG that pads, offsets and scales it to end up * in the right size / place relative to the character it will be placed over. - * [This image](../../../../images/svg-calculations.png) may or may not be helpful. + * [This image](../../../../resources/images/svg-calculations.png) may or may not be helpful. * * @param fontMeasurements Info about the user's font * @param shape The hat shape to process diff --git a/packages/app-vscode/src/scripts/populateDist/assets.ts b/packages/app-vscode/src/scripts/populateDist/assets.ts index 4f64935a62..271b6c482a 100644 --- a/packages/app-vscode/src/scripts/populateDist/assets.ts +++ b/packages/app-vscode/src/scripts/populateDist/assets.ts @@ -5,7 +5,6 @@ import type { Asset } from "./Asset"; export const assets: Asset[] = [ { source: "../../CHANGELOG.md", destination: "CHANGELOG.md" }, { source: "../../LICENSE", destination: "LICENSE" }, - { source: "../../NOTICE.md", destination: "NOTICE.md" }, { source: "../../README.md", destination: "README.md" }, { source: "../lib-cheatsheet-local/out/index.html", @@ -15,16 +14,19 @@ export const assets: Asset[] = [ optionalInDev: true, }, { - source: "../../fonts/cursorless-glyph.svg", + source: "../../resources/fonts/cursorless-glyph.svg", destination: "fonts/cursorless-glyph.svg", }, { - source: "../../fonts/cursorless.woff", + source: "../../resources/fonts/cursorless.woff", destination: "fonts/cursorless.woff", }, - { source: "../../images/hats", destination: "images/hats" }, { - source: "../../data/fixtures/recorded/tutorial", + source: "../../resources/images/hats", + destination: "images/hats", + }, + { + source: "../../resources/fixtures/recorded/tutorial", destination: "tutorial", }, { @@ -36,7 +38,10 @@ export const assets: Asset[] = [ destination: "media/tutorialWebview.css", }, { source: "./images/logo.png", destination: "images/logo.png" }, - { source: "../../images/logo.svg", destination: "images/logo.svg" }, + { + source: "../../resources/images/logo.svg", + destination: "images/logo.svg", + }, { source: "resources/font_measurements.js", destination: "resources/font_measurements.js", @@ -50,12 +55,8 @@ export const assets: Asset[] = [ destination: "resources/installationDependencies.js", }, { - source: "../../third-party-licenses.csv", - destination: "third-party-licenses.csv", - }, - { - source: "../../queries", - destination: "queries", + source: "../../resources/queries", + destination: "resources/queries", }, { generateContent: generateBuildInfo, diff --git a/packages/app-vscode/src/scripts/preprocessSvgHats.ts b/packages/app-vscode/src/scripts/preprocessSvgHats.ts index 1b2cd10e94..822d91beed 100644 --- a/packages/app-vscode/src/scripts/preprocessSvgHats.ts +++ b/packages/app-vscode/src/scripts/preprocessSvgHats.ts @@ -4,7 +4,7 @@ import { promises as fsp, readdirSync } from "node:fs"; import * as path from "node:path"; async function main() { - const directory = path.join(getCursorlessRepoRoot(), "images/hats"); + const directory = path.join(getCursorlessRepoRoot(), "resources/images/hats"); const dumper = new parser.XMLBuilder({ ignoreAttributes: false, diff --git a/packages/app-vscode/tsconfig.json b/packages/app-vscode/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/app-vscode/tsconfig.json +++ b/packages/app-vscode/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/app-web-docs/README.md b/packages/app-web-docs/README.md index b75dfda2a7..3228c799cb 100644 --- a/packages/app-web-docs/README.md +++ b/packages/app-web-docs/README.md @@ -28,4 +28,4 @@ This command generates static content into the `out` directory and can be served ### Deploy -After building this site, we copy the output to the `docs` subdir of the staging directory for our website, which is then deployed by Netlify. See the [deploy script](../../scripts/build-and-assemble-website.sh) for more details. +After building this site, we copy the output to the `docs` subdir of the staging directory for our website, which is then deployed by Netlify. See the [deploy script](../../resources/scripts/build-and-assemble-website.sh) for more details. diff --git a/packages/app-web-docs/src/docs/components/ScopeVisualizer.tsx b/packages/app-web-docs/src/docs/components/ScopeVisualizer.tsx index 5e64884a54..2949af4907 100644 --- a/packages/app-web-docs/src/docs/components/ScopeVisualizer.tsx +++ b/packages/app-web-docs/src/docs/components/ScopeVisualizer.tsx @@ -232,7 +232,7 @@ function renderFacet( "` to see the parse tree for a given target. For example `"parse tree line"` will show you the parse tree for the current line, as well as all of its ancestors. This will generate a markdown file with parse tree info, which you can then use to write your patterns. You might find it helpful to open a markdown preview of the file. - You will likely want to look at `node-types.json` for your language, (eg [java](https://github.com/tree-sitter/tree-sitter-java/blob/master/src/node-types.json)). This file is generated from the language's `grammar.js`, which might also be helpful to look at (eg [java](https://github.com/tree-sitter/tree-sitter-java/blob/master/grammar.js)). diff --git a/packages/app-web-docs/src/docs/contributing/architecture/neovim-test-infrastructure.md b/packages/app-web-docs/src/docs/contributing/architecture/neovim-test-infrastructure.md index ae03f8ae91..215a37f5a1 100644 --- a/packages/app-web-docs/src/docs/contributing/architecture/neovim-test-infrastructure.md +++ b/packages/app-web-docs/src/docs/contributing/architecture/neovim-test-infrastructure.md @@ -7,9 +7,9 @@ We'll start with a high-level overview of the architecture of the Cursorless tes Here is the call path when running Neovim tests locally. Note that `->` indicates one file calling another file: ``` -launch.json -> .vscode/tasks.json -> nvim -u init.lua +launch.json -> .vscode/tasks.json -> nvim -u packages/app-neovim/init.lua -init.lua +packages/app-neovim/init.lua -> CursorlessLoadExtension() -> TestRunnerRun() -> run() -> runAllTests() -> Mocha -> packages/test-neovim-e2e/src/suite/recorded.neovim.test.ts ``` @@ -89,13 +89,13 @@ The `Neovim: Launch neovim (test)` task effectively starts `nvim` as a detached } ``` -This ends up passing the `init.lua` script as the default config file (`-u`): +This ends up passing the `packages/app-neovim/init.lua` script as the default config file (`-u`): ```bat -nvim -u %CURSORLESS_REPO_ROOT%/init.lua +nvim -u %CURSORLESS_REPO_ROOT%/packages/app-neovim/init.lua ``` -This `init.lua` adds the local `packages/app-neovim/cursorless.nvim` relative path to the runtime path and initializes Cursorless: +This `packages/app-neovim/init.lua` file adds the local `packages/app-neovim/cursorless.nvim` relative path to the runtime path and initializes Cursorless: ```lua local repo_root = os.getenv("CURSORLESS_REPO_ROOT") @@ -199,7 +199,7 @@ async function runTestsInDir( ... ``` -Consequently, the recorded tests from `data/fixtures/recorded/` are executed when `packages/test-neovim-e2e/src/suite/recorded.neovim.test.ts` is invoked. +Consequently, the recorded tests from `resources/fixtures/recorded/` are executed when `packages/test-neovim-e2e/src/suite/recorded.neovim.test.ts` is invoked. ### Running Neovim tests on CI diff --git a/packages/app-web-docs/src/docs/contributing/test-case-recorder.md b/packages/app-web-docs/src/docs/contributing/test-case-recorder.md index 98f28061bf..fb584e2a1d 100644 --- a/packages/app-web-docs/src/docs/contributing/test-case-recorder.md +++ b/packages/app-web-docs/src/docs/contributing/test-case-recorder.md @@ -6,7 +6,7 @@ like `hello world`), positioning your cursor where you want, tell cursorless to start recording, and then issue one or more cursorless commands. It works by recording the initial state of the file including cursor position(s), the command run, and the final state, all in the form of a yaml document. See -[existing test cases](../../../../../data/fixtures/recorded) for example outputs. +[existing test cases](../../../../../resources/fixtures/recorded) for example outputs. ## Recording new tests @@ -58,7 +58,7 @@ Then each time you record a test, you need to issue two commands. The second com ### Default config per test case directory -Any test case directory that contains a `config.json` will set default configuration for all tests recorded in any descendant directory. For example, the file [`actions/config.json`](../../../../../data/fixtures/recorded/actions/config.json) makes it so that all our action tests will capture the final `that` mark. For a full list of keys supported in this json, see [`RecordTestCaseCommandOptions`](../../../../../packages/lib-engine/src/testCaseRecorder/RecordTestCaseCommandOptions.ts). +Any test case directory that contains a `config.json` will set default configuration for all tests recorded in any descendant directory. For example, the file [`actions/config.json`](../../../../../resources/fixtures/recorded/actions/config.json) makes it so that all our action tests will capture the final `that` mark. For a full list of keys supported in this json, see [`RecordTestCaseCommandOptions`](../../../../../packages/lib-engine/src/testCaseRecorder/RecordTestCaseCommandOptions.ts). ### Navigation map tests diff --git a/packages/app-web-docs/src/docs/user/README.md b/packages/app-web-docs/src/docs/user/README.md index 5f9def669a..096cd791ba 100644 --- a/packages/app-web-docs/src/docs/user/README.md +++ b/packages/app-web-docs/src/docs/user/README.md @@ -81,19 +81,19 @@ minimize syllables. The following shapes are supported. Note that to target the default (dot) shape you don't need to specify a shape. -| Spoken form | Shape | Internal ID | Enabled by default? | -| ----------- | -------------------------------------------------------- | ------------ | ------------------- | -| N/A | ![Default](../../../../../images/hats/default.svg) | `default` | ✅ | -| `"bolt"` | ![Bolt](../../../../../images/hats/bolt.svg) | `bolt` | ❌ | -| `"curve"` | ![Curve](../../../../../images/hats/curve.svg) | `curve` | ❌ | -| `"fox"` | ![Fox](../../../../../images/hats/fox.svg) | `fox` | ❌ | -| `"frame"` | ![Frame](../../../../../images/hats/frame.svg) | `frame` | ❌ | -| `"play"` | ![Play](../../../../../images/hats/play.svg) | `play` | ❌ | -| `"wing"` | ![Wing](../../../../../images/hats/wing.svg) | `wing` | ❌ | -| `"hole"` | ![Hole](../../../../../images/hats/hole.svg) | `hole` | ❌ | -| `"ex"` | ![Ex](../../../../../images/hats/ex.svg) | `ex` | ❌ | -| `"cross"` | ![Crosshairs](../../../../../images/hats/crosshairs.svg) | `crosshairs` | ❌ | -| `"eye"` | ![Eye](../../../../../images/hats/eye.svg) | `eye` | ❌ | +| Spoken form | Shape | Internal ID | Enabled by default? | +| ----------- | ------------------------------------------------------------------ | ------------ | ------------------- | +| N/A | ![Default](../../../../../resources/images/hats/default.svg) | `default` | ✅ | +| `"bolt"` | ![Bolt](../../../../../resources/images/hats/bolt.svg) | `bolt` | ❌ | +| `"curve"` | ![Curve](../../../../../resources/images/hats/curve.svg) | `curve` | ❌ | +| `"fox"` | ![Fox](../../../../../resources/images/hats/fox.svg) | `fox` | ❌ | +| `"frame"` | ![Frame](../../../../../resources/images/hats/frame.svg) | `frame` | ❌ | +| `"play"` | ![Play](../../../../../resources/images/hats/play.svg) | `play` | ❌ | +| `"wing"` | ![Wing](../../../../../resources/images/hats/wing.svg) | `wing` | ❌ | +| `"hole"` | ![Hole](../../../../../resources/images/hats/hole.svg) | `hole` | ❌ | +| `"ex"` | ![Ex](../../../../../resources/images/hats/ex.svg) | `ex` | ❌ | +| `"cross"` | ![Crosshairs](../../../../../resources/images/hats/crosshairs.svg) | `crosshairs` | ❌ | +| `"eye"` | ![Eye](../../../../../resources/images/hats/eye.svg) | `eye` | ❌ | You can enable or disable shapes in your VSCode settings, by searching for [`cursorless.hatEnablement.shapes`](vscode://settings/cursorless.hatEnablement.shapes) and checking the box next to the internal ID for the given shape as listed above. To navigate to your VSCode settings, either say "show settings", or go to File --> Preferences --> Settings. diff --git a/packages/app-web-docs/tsconfig.json b/packages/app-web-docs/tsconfig.json index c82379e86b..bfb6c9ec09 100644 --- a/packages/app-web-docs/tsconfig.json +++ b/packages/app-web-docs/tsconfig.json @@ -8,7 +8,7 @@ "src/**/*.ts", "src/**/*.tsx", "src/**/*.json", - "../../typings/**/*.d.ts" + "../../resources/typings/**/*.d.ts" ], "exclude": ["node_modules"] } diff --git a/packages/app-web/tsconfig.json b/packages/app-web/tsconfig.json index 13f9279bff..7afd4dcdf2 100644 --- a/packages/app-web/tsconfig.json +++ b/packages/app-web/tsconfig.json @@ -4,6 +4,6 @@ "src/**/*.ts", "src/**/*.tsx", "src/**/*.json", - "../../typings/**/*.d.ts" + "../../resources/typings/**/*.d.ts" ] } diff --git a/packages/lib-cheatsheet-local/tsconfig.json b/packages/lib-cheatsheet-local/tsconfig.json index 13f9279bff..7afd4dcdf2 100644 --- a/packages/lib-cheatsheet-local/tsconfig.json +++ b/packages/lib-cheatsheet-local/tsconfig.json @@ -4,6 +4,6 @@ "src/**/*.ts", "src/**/*.tsx", "src/**/*.json", - "../../typings/**/*.d.ts" + "../../resources/typings/**/*.d.ts" ] } diff --git a/packages/lib-cheatsheet/tsconfig.json b/packages/lib-cheatsheet/tsconfig.json index 13f9279bff..7afd4dcdf2 100644 --- a/packages/lib-cheatsheet/tsconfig.json +++ b/packages/lib-cheatsheet/tsconfig.json @@ -4,6 +4,6 @@ "src/**/*.ts", "src/**/*.tsx", "src/**/*.json", - "../../typings/**/*.d.ts" + "../../resources/typings/**/*.d.ts" ] } diff --git a/packages/lib-common/tsconfig.json b/packages/lib-common/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-common/tsconfig.json +++ b/packages/lib-common/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-engine/tsconfig.json b/packages/lib-engine/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-engine/tsconfig.json +++ b/packages/lib-engine/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-neovim-common/tsconfig.json b/packages/lib-neovim-common/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-neovim-common/tsconfig.json +++ b/packages/lib-neovim-common/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-neovim-registry/tsconfig.json b/packages/lib-neovim-registry/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-neovim-registry/tsconfig.json +++ b/packages/lib-neovim-registry/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-node-common/src/FileSystemRawTreeSitterQueryProvider.ts b/packages/lib-node-common/src/FileSystemRawTreeSitterQueryProvider.ts index 2b41b010d4..5323c31ff7 100644 --- a/packages/lib-node-common/src/FileSystemRawTreeSitterQueryProvider.ts +++ b/packages/lib-node-common/src/FileSystemRawTreeSitterQueryProvider.ts @@ -17,12 +17,13 @@ export class FileSystemRawTreeSitterQueryProvider implements RawTreeSitterQueryP ide: IDE, private fileSystem: FileSystem, ) { + const queriesPath = "resources/queries"; // Use the repo root as the root for development mode, so that we can make // hot-reloading work for the queries this.queryDir = ide.runMode === "development" - ? path.join(getCursorlessRepoRoot(), "queries") - : "queries"; + ? path.join(getCursorlessRepoRoot(), queriesPath) + : queriesPath; if (ide.runMode === "development") { this.disposables.push( diff --git a/packages/lib-node-common/src/getFixturePaths.ts b/packages/lib-node-common/src/getFixturePaths.ts index 72c28f5614..925591d77b 100644 --- a/packages/lib-node-common/src/getFixturePaths.ts +++ b/packages/lib-node-common/src/getFixturePaths.ts @@ -7,7 +7,7 @@ import * as path from "path"; import { walkFilesSync } from "./walkSync"; export function getFixturesPath() { - return path.join(getCursorlessRepoRoot(), "data", "fixtures"); + return path.join(getCursorlessRepoRoot(), "resources", "fixtures"); } export function getPackagePath(name: string) { diff --git a/packages/lib-node-common/tsconfig.json b/packages/lib-node-common/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-node-common/tsconfig.json +++ b/packages/lib-node-common/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-sentence-parser/tsconfig.json b/packages/lib-sentence-parser/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-sentence-parser/tsconfig.json +++ b/packages/lib-sentence-parser/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-talonjs-core/tsconfig.json b/packages/lib-talonjs-core/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-talonjs-core/tsconfig.json +++ b/packages/lib-talonjs-core/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-test-case-recorder/tsconfig.json b/packages/lib-test-case-recorder/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-test-case-recorder/tsconfig.json +++ b/packages/lib-test-case-recorder/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-tutorial/tsconfig.json b/packages/lib-tutorial/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-tutorial/tsconfig.json +++ b/packages/lib-tutorial/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-vscode-common/tsconfig.json b/packages/lib-vscode-common/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/lib-vscode-common/tsconfig.json +++ b/packages/lib-vscode-common/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/lib-vscode-tutorial-webview/tsconfig.json b/packages/lib-vscode-tutorial-webview/tsconfig.json index 13f9279bff..7afd4dcdf2 100644 --- a/packages/lib-vscode-tutorial-webview/tsconfig.json +++ b/packages/lib-vscode-tutorial-webview/tsconfig.json @@ -4,6 +4,6 @@ "src/**/*.ts", "src/**/*.tsx", "src/**/*.json", - "../../typings/**/*.d.ts" + "../../resources/typings/**/*.d.ts" ] } diff --git a/packages/test-neovim-e2e/tsconfig.json b/packages/test-neovim-e2e/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/test-neovim-e2e/tsconfig.json +++ b/packages/test-neovim-e2e/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/test-runner/src/runAllTests.ts b/packages/test-runner/src/runAllTests.ts index 1a3718d077..01028a404d 100644 --- a/packages/test-runner/src/runAllTests.ts +++ b/packages/test-runner/src/runAllTests.ts @@ -88,31 +88,26 @@ async function runTestsInDir( // Add files to the test suite files.forEach((f) => mocha.addFile(path.resolve(testRoot, f))); - try { - // Run the mocha test - await new Promise((resolve, reject) => { - const failedTests: string[] = []; - - const runner = mocha.run((failures) => { - if (shouldLogFailedTests()) { - logFailedTests(failedTests); - } - - if (failures > 0) { - reject(`${failures} tests failed.`); - } else { - resolve(); - } - }); + // Run the mocha test + await new Promise((resolve, reject) => { + const failedTests: string[] = []; + const runner = mocha.run((failures) => { if (shouldLogFailedTests()) { - runner.on("fail", (test) => failedTests.push(test.fullTitle())); + logFailedTests(failedTests); + } + + if (failures > 0) { + reject(`${failures} tests failed.`); + } else { + resolve(); } }); - } catch (err) { - console.error(err); - throw err; - } + + if (shouldLogFailedTests()) { + runner.on("fail", (test) => failedTests.push(test.fullTitle())); + } + }); } function parseArgumentsAndUpdateEnv() { diff --git a/packages/test-runner/src/scripts/runTalonJsTests.ts b/packages/test-runner/src/scripts/runTalonJsTests.ts index 555ca83798..0516cb25bb 100644 --- a/packages/test-runner/src/scripts/runTalonJsTests.ts +++ b/packages/test-runner/src/scripts/runTalonJsTests.ts @@ -4,4 +4,7 @@ import { TestType, runAllTests } from "../runAllTests"; -void runAllTests(TestType.talonJs); +runAllTests(TestType.talonJs).catch((error) => { + console.error(error); + process.exit(1); +}); diff --git a/packages/test-runner/src/scripts/runTalonTests.ts b/packages/test-runner/src/scripts/runTalonTests.ts index 8b8aab4526..e1af1f38cf 100644 --- a/packages/test-runner/src/scripts/runTalonTests.ts +++ b/packages/test-runner/src/scripts/runTalonTests.ts @@ -4,4 +4,7 @@ import { TestType, runAllTests } from "../runAllTests"; -void runAllTests(TestType.talon); +runAllTests(TestType.talon).catch((error) => { + console.error(error); + process.exit(1); +}); diff --git a/packages/test-runner/src/scripts/runUnitTests.ts b/packages/test-runner/src/scripts/runUnitTests.ts index 0d62c31fc4..44fc82ee30 100644 --- a/packages/test-runner/src/scripts/runUnitTests.ts +++ b/packages/test-runner/src/scripts/runUnitTests.ts @@ -4,4 +4,7 @@ import { TestType, runAllTests } from "../runAllTests"; -void runAllTests(TestType.unit); +runAllTests(TestType.unit).catch((error) => { + console.error(error); + process.exit(1); +}); diff --git a/packages/test-runner/tsconfig.json b/packages/test-runner/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/test-runner/tsconfig.json +++ b/packages/test-runner/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/test-talon-e2e/tsconfig.json b/packages/test-talon-e2e/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/test-talon-e2e/tsconfig.json +++ b/packages/test-talon-e2e/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/test-vscode-e2e/src/suite/testCaseRecorder.vscode.test.ts b/packages/test-vscode-e2e/src/suite/testCaseRecorder.vscode.test.ts index cadf12d1cb..718f1a4055 100644 --- a/packages/test-vscode-e2e/src/suite/testCaseRecorder.vscode.test.ts +++ b/packages/test-vscode-e2e/src/suite/testCaseRecorder.vscode.test.ts @@ -20,7 +20,7 @@ import { endToEndTestSetup } from "../endToEndTestSetup"; /* * All tests in this file are running against the latest version of the command * and needs to be manually updated on every command migration. - * This includes the file: data/fixtures/recorded/testCaseRecorder/takeHarp + * This includes the file: resources/fixtures/recorded/testCaseRecorder/takeHarp */ // Ensure that the test case recorder works diff --git a/packages/test-vscode-e2e/tsconfig.json b/packages/test-vscode-e2e/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/test-vscode-e2e/tsconfig.json +++ b/packages/test-vscode-e2e/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/packages/tool-meta-updater/src/metaUpdater.ts b/packages/tool-meta-updater/src/metaUpdater.ts index 24700f7f34..664aec271d 100644 --- a/packages/tool-meta-updater/src/metaUpdater.ts +++ b/packages/tool-meta-updater/src/metaUpdater.ts @@ -33,7 +33,8 @@ export const updater = async (workspaceDir: string) => { ["package.json"]: updatePackageJson.bind(null, context), ["tsconfig.json"]: updateTSConfig.bind(null, context), ["tsconfig.base.json"]: updateTSConfigBase.bind(null, context), - ["data/scopeSupportFacetInfos.md"]: updatesScopeSupportFacetInfos, + ["resources/fixtures/scopeSupportFacetInfos.md"]: + updatesScopeSupportFacetInfos, ...Object.fromEntries( Object.keys(languageScopeSupport).map((languageId) => [ `src/docs/user/languages/${languageId}.mdx`, diff --git a/packages/tool-meta-updater/src/updateTSConfig.ts b/packages/tool-meta-updater/src/updateTSConfig.ts index 14cb0ccc7b..04c762bdd7 100644 --- a/packages/tool-meta-updater/src/updateTSConfig.ts +++ b/packages/tool-meta-updater/src/updateTSConfig.ts @@ -78,7 +78,9 @@ export async function updateTSConfig( "src/**/*.ts", ...(isWeb ? ["src/**/*.tsx"] : []), "src/**/*.json", - toPosixPath(path.join(pathFromPackageToRoot, "typings", "**/*.d.ts")), + toPosixPath( + path.join(pathFromPackageToRoot, "resources", "typings", "**/*.d.ts"), + ), ], }; } diff --git a/packages/tool-meta-updater/tsconfig.json b/packages/tool-meta-updater/tsconfig.json index d4fbbd0828..ce3173c2d5 100644 --- a/packages/tool-meta-updater/tsconfig.json +++ b/packages/tool-meta-updater/tsconfig.json @@ -1,4 +1,8 @@ { "extends": "../../tsconfig.base.json", - "include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"] + "include": [ + "src/**/*.ts", + "src/**/*.json", + "../../resources/typings/**/*.d.ts" + ] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 743689be20..dfac00ae8e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,10 +11,10 @@ overrides: patchedDependencies: '@types/nearley@2.11.5': hash: 72ccc6b9fd704c6d457027e12d6e1d005695ab3508558a08c6aaf73fb608ef69 - path: patches/@types__nearley@2.11.5.patch + path: resources/patches/@types__nearley@2.11.5.patch nearley@2.20.1: hash: 0db19a2c501b16f37fbd86a94190d4a790184cea1061bf2e07f24eb076d4f2cf - path: patches/nearley@2.20.1.patch + path: resources/patches/nearley@2.20.1.patch importers: diff --git a/pyproject.toml b/pyproject.toml index 48d19440f3..19518f7ea5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires-python = "==3.11.*" [tool.ruff] target-version = "py311" -extend-exclude = ["vendor", "data/playground/**/*.py"] +extend-exclude = ["vendor", "resources/playground"] [tool.ruff.lint] select = ["E", "F", "C4", "I001", "UP", "SIM", "FLY"] @@ -18,4 +18,10 @@ pythonVersion = "3.11" reportSelfClsParameterName = false reportMissingModuleSource = false reportMissingImports = false -exclude = ["**/node_modules", "**/__pycache__", "**/.*", "**/vendor", "data/playground"] +exclude = [ + "**/node_modules", + "**/__pycache__", + "**/.*", + "cursorless-talon/src/vendor", + "resources/playground" +] diff --git a/dont_clone_monorepo.py b/resources/dont_clone_monorepo.py similarity index 100% rename from dont_clone_monorepo.py rename to resources/dont_clone_monorepo.py diff --git a/data/fixtures/helloWorld.txt b/resources/fixtures/helloWorld.txt similarity index 100% rename from data/fixtures/helloWorld.txt rename to resources/fixtures/helloWorld.txt diff --git a/data/fixtures/recorded/actions/_bringLineHarpAndWhale.yml b/resources/fixtures/recorded/actions/_bringLineHarpAndWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/_bringLineHarpAndWhale.yml rename to resources/fixtures/recorded/actions/_bringLineHarpAndWhale.yml diff --git a/data/fixtures/recorded/actions/alternateHighlightHarp.yml b/resources/fixtures/recorded/actions/alternateHighlightHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/alternateHighlightHarp.yml rename to resources/fixtures/recorded/actions/alternateHighlightHarp.yml diff --git a/data/fixtures/recorded/actions/appendPostWhale.yml b/resources/fixtures/recorded/actions/appendPostWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/appendPostWhale.yml rename to resources/fixtures/recorded/actions/appendPostWhale.yml diff --git a/data/fixtures/recorded/actions/appendPreWhale.yml b/resources/fixtures/recorded/actions/appendPreWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/appendPreWhale.yml rename to resources/fixtures/recorded/actions/appendPreWhale.yml diff --git a/data/fixtures/recorded/actions/appendWhale.yml b/resources/fixtures/recorded/actions/appendWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/appendWhale.yml rename to resources/fixtures/recorded/actions/appendWhale.yml diff --git a/data/fixtures/recorded/actions/breakBat.yml b/resources/fixtures/recorded/actions/breakBat.yml similarity index 100% rename from data/fixtures/recorded/actions/breakBat.yml rename to resources/fixtures/recorded/actions/breakBat.yml diff --git a/data/fixtures/recorded/actions/breakCommentSit.yml b/resources/fixtures/recorded/actions/breakCommentSit.yml similarity index 100% rename from data/fixtures/recorded/actions/breakCommentSit.yml rename to resources/fixtures/recorded/actions/breakCommentSit.yml diff --git a/data/fixtures/recorded/actions/breakJustThis.yml b/resources/fixtures/recorded/actions/breakJustThis.yml similarity index 100% rename from data/fixtures/recorded/actions/breakJustThis.yml rename to resources/fixtures/recorded/actions/breakJustThis.yml diff --git a/data/fixtures/recorded/actions/breakJustThis2.yml b/resources/fixtures/recorded/actions/breakJustThis2.yml similarity index 100% rename from data/fixtures/recorded/actions/breakJustThis2.yml rename to resources/fixtures/recorded/actions/breakJustThis2.yml diff --git a/data/fixtures/recorded/actions/bringAirAfterAir.yml b/resources/fixtures/recorded/actions/bringAirAfterAir.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirAfterAir.yml rename to resources/fixtures/recorded/actions/bringAirAfterAir.yml diff --git a/data/fixtures/recorded/actions/bringAirAndBatAndCap.yml b/resources/fixtures/recorded/actions/bringAirAndBatAndCap.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirAndBatAndCap.yml rename to resources/fixtures/recorded/actions/bringAirAndBatAndCap.yml diff --git a/data/fixtures/recorded/actions/bringAirAndBatAndCapToAfterDrum.yml b/resources/fixtures/recorded/actions/bringAirAndBatAndCapToAfterDrum.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirAndBatAndCapToAfterDrum.yml rename to resources/fixtures/recorded/actions/bringAirAndBatAndCapToAfterDrum.yml diff --git a/data/fixtures/recorded/actions/bringAirAndBatAndCapToAfterItemEach.yml b/resources/fixtures/recorded/actions/bringAirAndBatAndCapToAfterItemEach.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirAndBatAndCapToAfterItemEach.yml rename to resources/fixtures/recorded/actions/bringAirAndBatAndCapToAfterItemEach.yml diff --git a/data/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeDrum.yml b/resources/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeDrum.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeDrum.yml rename to resources/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeDrum.yml diff --git a/data/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeItemEach.yml b/resources/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeItemEach.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeItemEach.yml rename to resources/fixtures/recorded/actions/bringAirAndBatAndCapToBeforeItemEach.yml diff --git a/data/fixtures/recorded/actions/bringAirBeforeAir.yml b/resources/fixtures/recorded/actions/bringAirBeforeAir.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirBeforeAir.yml rename to resources/fixtures/recorded/actions/bringAirBeforeAir.yml diff --git a/data/fixtures/recorded/actions/bringAirToEndOfAir.yml b/resources/fixtures/recorded/actions/bringAirToEndOfAir.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirToEndOfAir.yml rename to resources/fixtures/recorded/actions/bringAirToEndOfAir.yml diff --git a/data/fixtures/recorded/actions/bringAirToStartOfAir.yml b/resources/fixtures/recorded/actions/bringAirToStartOfAir.yml similarity index 100% rename from data/fixtures/recorded/actions/bringAirToStartOfAir.yml rename to resources/fixtures/recorded/actions/bringAirToStartOfAir.yml diff --git a/data/fixtures/recorded/actions/bringArgMadeAfterLook.yml b/resources/fixtures/recorded/actions/bringArgMadeAfterLook.yml similarity index 100% rename from data/fixtures/recorded/actions/bringArgMadeAfterLook.yml rename to resources/fixtures/recorded/actions/bringArgMadeAfterLook.yml diff --git a/data/fixtures/recorded/actions/bringArgMadeAfterVest.yml b/resources/fixtures/recorded/actions/bringArgMadeAfterVest.yml similarity index 100% rename from data/fixtures/recorded/actions/bringArgMadeAfterVest.yml rename to resources/fixtures/recorded/actions/bringArgMadeAfterVest.yml diff --git a/data/fixtures/recorded/actions/bringArgWhaleBeforeLook.yml b/resources/fixtures/recorded/actions/bringArgWhaleBeforeLook.yml similarity index 100% rename from data/fixtures/recorded/actions/bringArgWhaleBeforeLook.yml rename to resources/fixtures/recorded/actions/bringArgWhaleBeforeLook.yml diff --git a/data/fixtures/recorded/actions/bringArgueFineAndZip.yml b/resources/fixtures/recorded/actions/bringArgueFineAndZip.yml similarity index 100% rename from data/fixtures/recorded/actions/bringArgueFineAndZip.yml rename to resources/fixtures/recorded/actions/bringArgueFineAndZip.yml diff --git a/data/fixtures/recorded/actions/bringArgueOxAndZipToAfterJustLeper.yml b/resources/fixtures/recorded/actions/bringArgueOxAndZipToAfterJustLeper.yml similarity index 100% rename from data/fixtures/recorded/actions/bringArgueOxAndZipToAfterJustLeper.yml rename to resources/fixtures/recorded/actions/bringArgueOxAndZipToAfterJustLeper.yml diff --git a/data/fixtures/recorded/actions/bringFineAfterLineVest.yml b/resources/fixtures/recorded/actions/bringFineAfterLineVest.yml similarity index 100% rename from data/fixtures/recorded/actions/bringFineAfterLineVest.yml rename to resources/fixtures/recorded/actions/bringFineAfterLineVest.yml diff --git a/data/fixtures/recorded/actions/bringFineBeforeLineVest.yml b/resources/fixtures/recorded/actions/bringFineBeforeLineVest.yml similarity index 100% rename from data/fixtures/recorded/actions/bringFineBeforeLineVest.yml rename to resources/fixtures/recorded/actions/bringFineBeforeLineVest.yml diff --git a/data/fixtures/recorded/actions/bringItemAirAfterCap.yml b/resources/fixtures/recorded/actions/bringItemAirAfterCap.yml similarity index 100% rename from data/fixtures/recorded/actions/bringItemAirAfterCap.yml rename to resources/fixtures/recorded/actions/bringItemAirAfterCap.yml diff --git a/data/fixtures/recorded/actions/bringLineAirAndBatAndCapToAfterDrum.yml b/resources/fixtures/recorded/actions/bringLineAirAndBatAndCapToAfterDrum.yml similarity index 100% rename from data/fixtures/recorded/actions/bringLineAirAndBatAndCapToAfterDrum.yml rename to resources/fixtures/recorded/actions/bringLineAirAndBatAndCapToAfterDrum.yml diff --git a/data/fixtures/recorded/actions/bringLineAirAndBatAndCapToBeforeDrum.yml b/resources/fixtures/recorded/actions/bringLineAirAndBatAndCapToBeforeDrum.yml similarity index 100% rename from data/fixtures/recorded/actions/bringLineAirAndBatAndCapToBeforeDrum.yml rename to resources/fixtures/recorded/actions/bringLineAirAndBatAndCapToBeforeDrum.yml diff --git a/data/fixtures/recorded/actions/bringName.yml b/resources/fixtures/recorded/actions/bringName.yml similarity index 100% rename from data/fixtures/recorded/actions/bringName.yml rename to resources/fixtures/recorded/actions/bringName.yml diff --git a/data/fixtures/recorded/actions/bringTokenToLine.yml b/resources/fixtures/recorded/actions/bringTokenToLine.yml similarity index 100% rename from data/fixtures/recorded/actions/bringTokenToLine.yml rename to resources/fixtures/recorded/actions/bringTokenToLine.yml diff --git a/data/fixtures/recorded/actions/bringVest.yml b/resources/fixtures/recorded/actions/bringVest.yml similarity index 100% rename from data/fixtures/recorded/actions/bringVest.yml rename to resources/fixtures/recorded/actions/bringVest.yml diff --git a/data/fixtures/recorded/actions/bringVestToCap.yml b/resources/fixtures/recorded/actions/bringVestToCap.yml similarity index 100% rename from data/fixtures/recorded/actions/bringVestToCap.yml rename to resources/fixtures/recorded/actions/bringVestToCap.yml diff --git a/data/fixtures/recorded/actions/callFine.yml b/resources/fixtures/recorded/actions/callFine.yml similarity index 100% rename from data/fixtures/recorded/actions/callFine.yml rename to resources/fixtures/recorded/actions/callFine.yml diff --git a/data/fixtures/recorded/actions/callFineOnBatt.yml b/resources/fixtures/recorded/actions/callFineOnBatt.yml similarity index 100% rename from data/fixtures/recorded/actions/callFineOnBatt.yml rename to resources/fixtures/recorded/actions/callFineOnBatt.yml diff --git a/data/fixtures/recorded/actions/callVest.yml b/resources/fixtures/recorded/actions/callVest.yml similarity index 100% rename from data/fixtures/recorded/actions/callVest.yml rename to resources/fixtures/recorded/actions/callVest.yml diff --git a/data/fixtures/recorded/actions/callVestOnCap.yml b/resources/fixtures/recorded/actions/callVestOnCap.yml similarity index 100% rename from data/fixtures/recorded/actions/callVestOnCap.yml rename to resources/fixtures/recorded/actions/callVestOnCap.yml diff --git a/data/fixtures/recorded/actions/carveVest.yml b/resources/fixtures/recorded/actions/carveVest.yml similarity index 100% rename from data/fixtures/recorded/actions/carveVest.yml rename to resources/fixtures/recorded/actions/carveVest.yml diff --git a/data/fixtures/recorded/actions/changeNextInstanceChar.yml b/resources/fixtures/recorded/actions/changeNextInstanceChar.yml similarity index 100% rename from data/fixtures/recorded/actions/changeNextInstanceChar.yml rename to resources/fixtures/recorded/actions/changeNextInstanceChar.yml diff --git a/data/fixtures/recorded/actions/chuckArgMadeAndAir.yml b/resources/fixtures/recorded/actions/chuckArgMadeAndAir.yml similarity index 100% rename from data/fixtures/recorded/actions/chuckArgMadeAndAir.yml rename to resources/fixtures/recorded/actions/chuckArgMadeAndAir.yml diff --git a/data/fixtures/recorded/actions/chuckArgMadeAndAirAndJustSoon.yml b/resources/fixtures/recorded/actions/chuckArgMadeAndAirAndJustSoon.yml similarity index 100% rename from data/fixtures/recorded/actions/chuckArgMadeAndAirAndJustSoon.yml rename to resources/fixtures/recorded/actions/chuckArgMadeAndAirAndJustSoon.yml diff --git a/data/fixtures/recorded/actions/chuckEveryArgMade.yml b/resources/fixtures/recorded/actions/chuckEveryArgMade.yml similarity index 100% rename from data/fixtures/recorded/actions/chuckEveryArgMade.yml rename to resources/fixtures/recorded/actions/chuckEveryArgMade.yml diff --git a/data/fixtures/recorded/actions/chuckVest.yml b/resources/fixtures/recorded/actions/chuckVest.yml similarity index 100% rename from data/fixtures/recorded/actions/chuckVest.yml rename to resources/fixtures/recorded/actions/chuckVest.yml diff --git a/data/fixtures/recorded/actions/clearVest.yml b/resources/fixtures/recorded/actions/clearVest.yml similarity index 100% rename from data/fixtures/recorded/actions/clearVest.yml rename to resources/fixtures/recorded/actions/clearVest.yml diff --git a/data/fixtures/recorded/actions/cloneArgue.yml b/resources/fixtures/recorded/actions/cloneArgue.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneArgue.yml rename to resources/fixtures/recorded/actions/cloneArgue.yml diff --git a/data/fixtures/recorded/actions/cloneArgue2.yml b/resources/fixtures/recorded/actions/cloneArgue2.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneArgue2.yml rename to resources/fixtures/recorded/actions/cloneArgue2.yml diff --git a/data/fixtures/recorded/actions/cloneEveryArg.yml b/resources/fixtures/recorded/actions/cloneEveryArg.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneEveryArg.yml rename to resources/fixtures/recorded/actions/cloneEveryArg.yml diff --git a/data/fixtures/recorded/actions/cloneHarp.yml b/resources/fixtures/recorded/actions/cloneHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneHarp.yml rename to resources/fixtures/recorded/actions/cloneHarp.yml diff --git a/data/fixtures/recorded/actions/cloneHarp2.yml b/resources/fixtures/recorded/actions/cloneHarp2.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneHarp2.yml rename to resources/fixtures/recorded/actions/cloneHarp2.yml diff --git a/data/fixtures/recorded/actions/cloneToken.yml b/resources/fixtures/recorded/actions/cloneToken.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneToken.yml rename to resources/fixtures/recorded/actions/cloneToken.yml diff --git a/data/fixtures/recorded/actions/cloneToken2.yml b/resources/fixtures/recorded/actions/cloneToken2.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneToken2.yml rename to resources/fixtures/recorded/actions/cloneToken2.yml diff --git a/data/fixtures/recorded/actions/cloneToken3.yml b/resources/fixtures/recorded/actions/cloneToken3.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneToken3.yml rename to resources/fixtures/recorded/actions/cloneToken3.yml diff --git a/data/fixtures/recorded/actions/cloneToken4.yml b/resources/fixtures/recorded/actions/cloneToken4.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneToken4.yml rename to resources/fixtures/recorded/actions/cloneToken4.yml diff --git a/data/fixtures/recorded/actions/cloneToken5.yml b/resources/fixtures/recorded/actions/cloneToken5.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneToken5.yml rename to resources/fixtures/recorded/actions/cloneToken5.yml diff --git a/data/fixtures/recorded/actions/cloneUpArgue.yml b/resources/fixtures/recorded/actions/cloneUpArgue.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpArgue.yml rename to resources/fixtures/recorded/actions/cloneUpArgue.yml diff --git a/data/fixtures/recorded/actions/cloneUpArgue2.yml b/resources/fixtures/recorded/actions/cloneUpArgue2.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpArgue2.yml rename to resources/fixtures/recorded/actions/cloneUpArgue2.yml diff --git a/data/fixtures/recorded/actions/cloneUpEveryArg.yml b/resources/fixtures/recorded/actions/cloneUpEveryArg.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpEveryArg.yml rename to resources/fixtures/recorded/actions/cloneUpEveryArg.yml diff --git a/data/fixtures/recorded/actions/cloneUpHarp.yml b/resources/fixtures/recorded/actions/cloneUpHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpHarp.yml rename to resources/fixtures/recorded/actions/cloneUpHarp.yml diff --git a/data/fixtures/recorded/actions/cloneUpHarp2.yml b/resources/fixtures/recorded/actions/cloneUpHarp2.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpHarp2.yml rename to resources/fixtures/recorded/actions/cloneUpHarp2.yml diff --git a/data/fixtures/recorded/actions/cloneUpToken.yml b/resources/fixtures/recorded/actions/cloneUpToken.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpToken.yml rename to resources/fixtures/recorded/actions/cloneUpToken.yml diff --git a/data/fixtures/recorded/actions/cloneUpToken2.yml b/resources/fixtures/recorded/actions/cloneUpToken2.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpToken2.yml rename to resources/fixtures/recorded/actions/cloneUpToken2.yml diff --git a/data/fixtures/recorded/actions/cloneUpToken3.yml b/resources/fixtures/recorded/actions/cloneUpToken3.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpToken3.yml rename to resources/fixtures/recorded/actions/cloneUpToken3.yml diff --git a/data/fixtures/recorded/actions/cloneUpToken4.yml b/resources/fixtures/recorded/actions/cloneUpToken4.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpToken4.yml rename to resources/fixtures/recorded/actions/cloneUpToken4.yml diff --git a/data/fixtures/recorded/actions/cloneUpToken5.yml b/resources/fixtures/recorded/actions/cloneUpToken5.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpToken5.yml rename to resources/fixtures/recorded/actions/cloneUpToken5.yml diff --git a/data/fixtures/recorded/actions/cloneUpVest.yml b/resources/fixtures/recorded/actions/cloneUpVest.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneUpVest.yml rename to resources/fixtures/recorded/actions/cloneUpVest.yml diff --git a/data/fixtures/recorded/actions/cloneVest.yml b/resources/fixtures/recorded/actions/cloneVest.yml similarity index 100% rename from data/fixtures/recorded/actions/cloneVest.yml rename to resources/fixtures/recorded/actions/cloneVest.yml diff --git a/data/fixtures/recorded/actions/commentVest.yml b/resources/fixtures/recorded/actions/commentVest.yml similarity index 100% rename from data/fixtures/recorded/actions/commentVest.yml rename to resources/fixtures/recorded/actions/commentVest.yml diff --git a/data/fixtures/recorded/actions/config.json b/resources/fixtures/recorded/actions/config.json similarity index 100% rename from data/fixtures/recorded/actions/config.json rename to resources/fixtures/recorded/actions/config.json diff --git a/data/fixtures/recorded/actions/copySecondToken.yml b/resources/fixtures/recorded/actions/copySecondToken.yml similarity index 100% rename from data/fixtures/recorded/actions/copySecondToken.yml rename to resources/fixtures/recorded/actions/copySecondToken.yml diff --git a/data/fixtures/recorded/actions/copyVest.yml b/resources/fixtures/recorded/actions/copyVest.yml similarity index 100% rename from data/fixtures/recorded/actions/copyVest.yml rename to resources/fixtures/recorded/actions/copyVest.yml diff --git a/data/fixtures/recorded/actions/curlyRepackRound.yml b/resources/fixtures/recorded/actions/curlyRepackRound.yml similarity index 100% rename from data/fixtures/recorded/actions/curlyRepackRound.yml rename to resources/fixtures/recorded/actions/curlyRepackRound.yml diff --git a/data/fixtures/recorded/actions/customHarp.yml b/resources/fixtures/recorded/actions/customHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/customHarp.yml rename to resources/fixtures/recorded/actions/customHarp.yml diff --git a/data/fixtures/recorded/actions/cutEveryArgMade.yml b/resources/fixtures/recorded/actions/cutEveryArgMade.yml similarity index 100% rename from data/fixtures/recorded/actions/cutEveryArgMade.yml rename to resources/fixtures/recorded/actions/cutEveryArgMade.yml diff --git a/data/fixtures/recorded/actions/dedentLine.yml b/resources/fixtures/recorded/actions/dedentLine.yml similarity index 100% rename from data/fixtures/recorded/actions/dedentLine.yml rename to resources/fixtures/recorded/actions/dedentLine.yml diff --git a/data/fixtures/recorded/actions/dedentVest.yml b/resources/fixtures/recorded/actions/dedentVest.yml similarity index 100% rename from data/fixtures/recorded/actions/dedentVest.yml rename to resources/fixtures/recorded/actions/dedentVest.yml diff --git a/data/fixtures/recorded/actions/defineVest.yml b/resources/fixtures/recorded/actions/defineVest.yml similarity index 100% rename from data/fixtures/recorded/actions/defineVest.yml rename to resources/fixtures/recorded/actions/defineVest.yml diff --git a/data/fixtures/recorded/actions/drinkArg.yml b/resources/fixtures/recorded/actions/drinkArg.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkArg.yml rename to resources/fixtures/recorded/actions/drinkArg.yml diff --git a/data/fixtures/recorded/actions/drinkArg2.yml b/resources/fixtures/recorded/actions/drinkArg2.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkArg2.yml rename to resources/fixtures/recorded/actions/drinkArg2.yml diff --git a/data/fixtures/recorded/actions/drinkArg3.yml b/resources/fixtures/recorded/actions/drinkArg3.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkArg3.yml rename to resources/fixtures/recorded/actions/drinkArg3.yml diff --git a/data/fixtures/recorded/actions/drinkArg4.yml b/resources/fixtures/recorded/actions/drinkArg4.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkArg4.yml rename to resources/fixtures/recorded/actions/drinkArg4.yml diff --git a/data/fixtures/recorded/actions/drinkArg5.yml b/resources/fixtures/recorded/actions/drinkArg5.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkArg5.yml rename to resources/fixtures/recorded/actions/drinkArg5.yml diff --git a/data/fixtures/recorded/actions/drinkBlock.yml b/resources/fixtures/recorded/actions/drinkBlock.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkBlock.yml rename to resources/fixtures/recorded/actions/drinkBlock.yml diff --git a/data/fixtures/recorded/actions/drinkDrumAndSpunAndTrap.yml b/resources/fixtures/recorded/actions/drinkDrumAndSpunAndTrap.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkDrumAndSpunAndTrap.yml rename to resources/fixtures/recorded/actions/drinkDrumAndSpunAndTrap.yml diff --git a/data/fixtures/recorded/actions/drinkHarpAndLookAndTrap.yml b/resources/fixtures/recorded/actions/drinkHarpAndLookAndTrap.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkHarpAndLookAndTrap.yml rename to resources/fixtures/recorded/actions/drinkHarpAndLookAndTrap.yml diff --git a/data/fixtures/recorded/actions/drinkItem.yml b/resources/fixtures/recorded/actions/drinkItem.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkItem.yml rename to resources/fixtures/recorded/actions/drinkItem.yml diff --git a/data/fixtures/recorded/actions/drinkItem2.yml b/resources/fixtures/recorded/actions/drinkItem2.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkItem2.yml rename to resources/fixtures/recorded/actions/drinkItem2.yml diff --git a/data/fixtures/recorded/actions/drinkItem3.yml b/resources/fixtures/recorded/actions/drinkItem3.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkItem3.yml rename to resources/fixtures/recorded/actions/drinkItem3.yml diff --git a/data/fixtures/recorded/actions/drinkLine.yml b/resources/fixtures/recorded/actions/drinkLine.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkLine.yml rename to resources/fixtures/recorded/actions/drinkLine.yml diff --git a/data/fixtures/recorded/actions/drinkLine2.yml b/resources/fixtures/recorded/actions/drinkLine2.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkLine2.yml rename to resources/fixtures/recorded/actions/drinkLine2.yml diff --git a/data/fixtures/recorded/actions/drinkThis.yml b/resources/fixtures/recorded/actions/drinkThis.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkThis.yml rename to resources/fixtures/recorded/actions/drinkThis.yml diff --git a/data/fixtures/recorded/actions/drinkVest.yml b/resources/fixtures/recorded/actions/drinkVest.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkVest.yml rename to resources/fixtures/recorded/actions/drinkVest.yml diff --git a/data/fixtures/recorded/actions/drinkVest2.yml b/resources/fixtures/recorded/actions/drinkVest2.yml similarity index 100% rename from data/fixtures/recorded/actions/drinkVest2.yml rename to resources/fixtures/recorded/actions/drinkVest2.yml diff --git a/data/fixtures/recorded/actions/flashToken.yml b/resources/fixtures/recorded/actions/flashToken.yml similarity index 100% rename from data/fixtures/recorded/actions/flashToken.yml rename to resources/fixtures/recorded/actions/flashToken.yml diff --git a/data/fixtures/recorded/actions/followSplitVest.yml b/resources/fixtures/recorded/actions/followSplitVest.yml similarity index 100% rename from data/fixtures/recorded/actions/followSplitVest.yml rename to resources/fixtures/recorded/actions/followSplitVest.yml diff --git a/data/fixtures/recorded/actions/fromThis.yml b/resources/fixtures/recorded/actions/fromThis.yml similarity index 100% rename from data/fixtures/recorded/actions/fromThis.yml rename to resources/fixtures/recorded/actions/fromThis.yml diff --git a/data/fixtures/recorded/actions/getTargetsBatAndCap.yml b/resources/fixtures/recorded/actions/getTargetsBatAndCap.yml similarity index 100% rename from data/fixtures/recorded/actions/getTargetsBatAndCap.yml rename to resources/fixtures/recorded/actions/getTargetsBatAndCap.yml diff --git a/data/fixtures/recorded/actions/getTextAir.yml b/resources/fixtures/recorded/actions/getTextAir.yml similarity index 100% rename from data/fixtures/recorded/actions/getTextAir.yml rename to resources/fixtures/recorded/actions/getTextAir.yml diff --git a/data/fixtures/recorded/actions/giveAirAndBang.yml b/resources/fixtures/recorded/actions/giveAirAndBang.yml similarity index 100% rename from data/fixtures/recorded/actions/giveAirAndBang.yml rename to resources/fixtures/recorded/actions/giveAirAndBang.yml diff --git a/data/fixtures/recorded/actions/giveBat.yml b/resources/fixtures/recorded/actions/giveBat.yml similarity index 100% rename from data/fixtures/recorded/actions/giveBat.yml rename to resources/fixtures/recorded/actions/giveBat.yml diff --git a/data/fixtures/recorded/actions/giveBat2.yml b/resources/fixtures/recorded/actions/giveBat2.yml similarity index 100% rename from data/fixtures/recorded/actions/giveBat2.yml rename to resources/fixtures/recorded/actions/giveBat2.yml diff --git a/data/fixtures/recorded/actions/giveBlueQuote.yml b/resources/fixtures/recorded/actions/giveBlueQuote.yml similarity index 100% rename from data/fixtures/recorded/actions/giveBlueQuote.yml rename to resources/fixtures/recorded/actions/giveBlueQuote.yml diff --git a/data/fixtures/recorded/actions/giveBlueQuoteAndQuote.yml b/resources/fixtures/recorded/actions/giveBlueQuoteAndQuote.yml similarity index 100% rename from data/fixtures/recorded/actions/giveBlueQuoteAndQuote.yml rename to resources/fixtures/recorded/actions/giveBlueQuoteAndQuote.yml diff --git a/data/fixtures/recorded/actions/giveCap.yml b/resources/fixtures/recorded/actions/giveCap.yml similarity index 100% rename from data/fixtures/recorded/actions/giveCap.yml rename to resources/fixtures/recorded/actions/giveCap.yml diff --git a/data/fixtures/recorded/actions/giveDot.yml b/resources/fixtures/recorded/actions/giveDot.yml similarity index 100% rename from data/fixtures/recorded/actions/giveDot.yml rename to resources/fixtures/recorded/actions/giveDot.yml diff --git a/data/fixtures/recorded/actions/giveDot2.yml b/resources/fixtures/recorded/actions/giveDot2.yml similarity index 100% rename from data/fixtures/recorded/actions/giveDot2.yml rename to resources/fixtures/recorded/actions/giveDot2.yml diff --git a/data/fixtures/recorded/actions/giveDrum.yml b/resources/fixtures/recorded/actions/giveDrum.yml similarity index 100% rename from data/fixtures/recorded/actions/giveDrum.yml rename to resources/fixtures/recorded/actions/giveDrum.yml diff --git a/data/fixtures/recorded/actions/giveEndOfDot.yml b/resources/fixtures/recorded/actions/giveEndOfDot.yml similarity index 100% rename from data/fixtures/recorded/actions/giveEndOfDot.yml rename to resources/fixtures/recorded/actions/giveEndOfDot.yml diff --git a/data/fixtures/recorded/actions/giveEqualsPastColon.yml b/resources/fixtures/recorded/actions/giveEqualsPastColon.yml similarity index 100% rename from data/fixtures/recorded/actions/giveEqualsPastColon.yml rename to resources/fixtures/recorded/actions/giveEqualsPastColon.yml diff --git a/data/fixtures/recorded/actions/giveHarp.yml b/resources/fixtures/recorded/actions/giveHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/giveHarp.yml rename to resources/fixtures/recorded/actions/giveHarp.yml diff --git a/data/fixtures/recorded/actions/giveHarpAndWhale.yml b/resources/fixtures/recorded/actions/giveHarpAndWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/giveHarpAndWhale.yml rename to resources/fixtures/recorded/actions/giveHarpAndWhale.yml diff --git a/data/fixtures/recorded/actions/giveQuote.yml b/resources/fixtures/recorded/actions/giveQuote.yml similarity index 100% rename from data/fixtures/recorded/actions/giveQuote.yml rename to resources/fixtures/recorded/actions/giveQuote.yml diff --git a/data/fixtures/recorded/actions/giveQuoteAndAir.yml b/resources/fixtures/recorded/actions/giveQuoteAndAir.yml similarity index 100% rename from data/fixtures/recorded/actions/giveQuoteAndAir.yml rename to resources/fixtures/recorded/actions/giveQuoteAndAir.yml diff --git a/data/fixtures/recorded/actions/giveQuoteAndBang.yml b/resources/fixtures/recorded/actions/giveQuoteAndBang.yml similarity index 100% rename from data/fixtures/recorded/actions/giveQuoteAndBang.yml rename to resources/fixtures/recorded/actions/giveQuoteAndBang.yml diff --git a/data/fixtures/recorded/actions/giveStartOfDot.yml b/resources/fixtures/recorded/actions/giveStartOfDot.yml similarity index 100% rename from data/fixtures/recorded/actions/giveStartOfDot.yml rename to resources/fixtures/recorded/actions/giveStartOfDot.yml diff --git a/data/fixtures/recorded/actions/giveVestAndHarp.yml b/resources/fixtures/recorded/actions/giveVestAndHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/giveVestAndHarp.yml rename to resources/fixtures/recorded/actions/giveVestAndHarp.yml diff --git a/data/fixtures/recorded/actions/highlightNothing.yml b/resources/fixtures/recorded/actions/highlightNothing.yml similarity index 100% rename from data/fixtures/recorded/actions/highlightNothing.yml rename to resources/fixtures/recorded/actions/highlightNothing.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/decrementFile.yml b/resources/fixtures/recorded/actions/incrementDecrement/decrementFile.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/decrementFile.yml rename to resources/fixtures/recorded/actions/incrementDecrement/decrementFile.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/decrementFile2.yml b/resources/fixtures/recorded/actions/incrementDecrement/decrementFile2.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/decrementFile2.yml rename to resources/fixtures/recorded/actions/incrementDecrement/decrementFile2.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/decrementFile3.yml b/resources/fixtures/recorded/actions/incrementDecrement/decrementFile3.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/decrementFile3.yml rename to resources/fixtures/recorded/actions/incrementDecrement/decrementFile3.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/decrementFirstSub.yml b/resources/fixtures/recorded/actions/incrementDecrement/decrementFirstSub.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/decrementFirstSub.yml rename to resources/fixtures/recorded/actions/incrementDecrement/decrementFirstSub.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/incrementFile.yml b/resources/fixtures/recorded/actions/incrementDecrement/incrementFile.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/incrementFile.yml rename to resources/fixtures/recorded/actions/incrementDecrement/incrementFile.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/incrementFile2.yml b/resources/fixtures/recorded/actions/incrementDecrement/incrementFile2.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/incrementFile2.yml rename to resources/fixtures/recorded/actions/incrementDecrement/incrementFile2.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/incrementFile3.yml b/resources/fixtures/recorded/actions/incrementDecrement/incrementFile3.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/incrementFile3.yml rename to resources/fixtures/recorded/actions/incrementDecrement/incrementFile3.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/incrementLineFourAndEveryTokenOne.yml b/resources/fixtures/recorded/actions/incrementDecrement/incrementLineFourAndEveryTokenOne.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/incrementLineFourAndEveryTokenOne.yml rename to resources/fixtures/recorded/actions/incrementDecrement/incrementLineFourAndEveryTokenOne.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/incrementSecondSub.yml b/resources/fixtures/recorded/actions/incrementDecrement/incrementSecondSub.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/incrementSecondSub.yml rename to resources/fixtures/recorded/actions/incrementDecrement/incrementSecondSub.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/incrementThis.yml b/resources/fixtures/recorded/actions/incrementDecrement/incrementThis.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/incrementThis.yml rename to resources/fixtures/recorded/actions/incrementDecrement/incrementThis.yml diff --git a/data/fixtures/recorded/actions/incrementDecrement/incrementThree.yml b/resources/fixtures/recorded/actions/incrementDecrement/incrementThree.yml similarity index 100% rename from data/fixtures/recorded/actions/incrementDecrement/incrementThree.yml rename to resources/fixtures/recorded/actions/incrementDecrement/incrementThree.yml diff --git a/data/fixtures/recorded/actions/indentLine.yml b/resources/fixtures/recorded/actions/indentLine.yml similarity index 100% rename from data/fixtures/recorded/actions/indentLine.yml rename to resources/fixtures/recorded/actions/indentLine.yml diff --git a/data/fixtures/recorded/actions/indentVest.yml b/resources/fixtures/recorded/actions/indentVest.yml similarity index 100% rename from data/fixtures/recorded/actions/indentVest.yml rename to resources/fixtures/recorded/actions/indentVest.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis10.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis10.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis10.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis10.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis11.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis11.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis11.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis11.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis12.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis12.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis12.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis12.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis2.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis2.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis2.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis2.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis3.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis3.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis3.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis3.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis4.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis4.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis4.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis4.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis5.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis5.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis5.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis5.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis6.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis6.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis6.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis6.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis7.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis7.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis7.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis7.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis8.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis8.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis8.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis8.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropThis9.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropThis9.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropThis9.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropThis9.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropToken.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropToken.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropToken.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropToken.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropVest.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropVest.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropVest.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropVest.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/dropVest2.yml b/resources/fixtures/recorded/actions/insertEmptyLines/dropVest2.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/dropVest2.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/dropVest2.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis10.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis10.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis10.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis10.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis11.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis11.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis11.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis11.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis12.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis12.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis12.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis12.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis13.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis13.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis13.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis13.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis2.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis2.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis2.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis2.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis3.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis3.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis3.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis3.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis4.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis4.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis4.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis4.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis5.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis5.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis5.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis5.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis6.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis6.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis6.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis6.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis7.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis7.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis7.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis7.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis8.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis8.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis8.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis8.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatThis9.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatThis9.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatThis9.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatThis9.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatToken.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatToken.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatToken.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatToken.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatVest.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatVest.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatVest.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatVest.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/floatVest2.yml b/resources/fixtures/recorded/actions/insertEmptyLines/floatVest2.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/floatVest2.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/floatVest2.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis10.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis10.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis10.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis10.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis11.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis11.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis11.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis11.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis12.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis12.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis12.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis12.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis13.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis13.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis13.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis13.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis14.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis14.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis14.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis14.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis15.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis15.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis15.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis15.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis16.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis16.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis16.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis16.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis17.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis17.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis17.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis17.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis18.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis18.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis18.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis18.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis19.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis19.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis19.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis19.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis2.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis2.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis2.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis2.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis20.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis20.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis20.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis20.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis21.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis21.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis21.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis21.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis22.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis22.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis22.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis22.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis3.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis3.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis3.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis3.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis4.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis4.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis4.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis4.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis5.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis5.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis5.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis5.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis6.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis6.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis6.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis6.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis7.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis7.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis7.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis7.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis8.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis8.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis8.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis8.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffThis9.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffThis9.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffThis9.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffThis9.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffToken.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffToken.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffToken.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffToken.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffVest.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffVest.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffVest.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffVest.yml diff --git a/data/fixtures/recorded/actions/insertEmptyLines/puffVest2.yml b/resources/fixtures/recorded/actions/insertEmptyLines/puffVest2.yml similarity index 100% rename from data/fixtures/recorded/actions/insertEmptyLines/puffVest2.yml rename to resources/fixtures/recorded/actions/insertEmptyLines/puffVest2.yml diff --git a/data/fixtures/recorded/actions/joinAir.yml b/resources/fixtures/recorded/actions/joinAir.yml similarity index 100% rename from data/fixtures/recorded/actions/joinAir.yml rename to resources/fixtures/recorded/actions/joinAir.yml diff --git a/data/fixtures/recorded/actions/joinAir2.yml b/resources/fixtures/recorded/actions/joinAir2.yml similarity index 100% rename from data/fixtures/recorded/actions/joinAir2.yml rename to resources/fixtures/recorded/actions/joinAir2.yml diff --git a/data/fixtures/recorded/actions/joinAir3.yml b/resources/fixtures/recorded/actions/joinAir3.yml similarity index 100% rename from data/fixtures/recorded/actions/joinAir3.yml rename to resources/fixtures/recorded/actions/joinAir3.yml diff --git a/data/fixtures/recorded/actions/joinAir4.yml b/resources/fixtures/recorded/actions/joinAir4.yml similarity index 100% rename from data/fixtures/recorded/actions/joinAir4.yml rename to resources/fixtures/recorded/actions/joinAir4.yml diff --git a/data/fixtures/recorded/actions/joinBatPastEach.yml b/resources/fixtures/recorded/actions/joinBatPastEach.yml similarity index 100% rename from data/fixtures/recorded/actions/joinBatPastEach.yml rename to resources/fixtures/recorded/actions/joinBatPastEach.yml diff --git a/data/fixtures/recorded/actions/joinBlock.yml b/resources/fixtures/recorded/actions/joinBlock.yml similarity index 100% rename from data/fixtures/recorded/actions/joinBlock.yml rename to resources/fixtures/recorded/actions/joinBlock.yml diff --git a/data/fixtures/recorded/actions/joinFile.yml b/resources/fixtures/recorded/actions/joinFile.yml similarity index 100% rename from data/fixtures/recorded/actions/joinFile.yml rename to resources/fixtures/recorded/actions/joinFile.yml diff --git a/data/fixtures/recorded/actions/joinLineThis.yml b/resources/fixtures/recorded/actions/joinLineThis.yml similarity index 100% rename from data/fixtures/recorded/actions/joinLineThis.yml rename to resources/fixtures/recorded/actions/joinLineThis.yml diff --git a/data/fixtures/recorded/actions/joinThreeTokens.yml b/resources/fixtures/recorded/actions/joinThreeTokens.yml similarity index 100% rename from data/fixtures/recorded/actions/joinThreeTokens.yml rename to resources/fixtures/recorded/actions/joinThreeTokens.yml diff --git a/data/fixtures/recorded/actions/joinTokenBattPastEach.yml b/resources/fixtures/recorded/actions/joinTokenBattPastEach.yml similarity index 100% rename from data/fixtures/recorded/actions/joinTokenBattPastEach.yml rename to resources/fixtures/recorded/actions/joinTokenBattPastEach.yml diff --git a/data/fixtures/recorded/actions/joinTwoLines.yml b/resources/fixtures/recorded/actions/joinTwoLines.yml similarity index 100% rename from data/fixtures/recorded/actions/joinTwoLines.yml rename to resources/fixtures/recorded/actions/joinTwoLines.yml diff --git a/data/fixtures/recorded/actions/moveBlockAfterFile.yml b/resources/fixtures/recorded/actions/moveBlockAfterFile.yml similarity index 100% rename from data/fixtures/recorded/actions/moveBlockAfterFile.yml rename to resources/fixtures/recorded/actions/moveBlockAfterFile.yml diff --git a/data/fixtures/recorded/actions/moveEveryArgMade.yml b/resources/fixtures/recorded/actions/moveEveryArgMade.yml similarity index 100% rename from data/fixtures/recorded/actions/moveEveryArgMade.yml rename to resources/fixtures/recorded/actions/moveEveryArgMade.yml diff --git a/data/fixtures/recorded/actions/moveTokenToLine.yml b/resources/fixtures/recorded/actions/moveTokenToLine.yml similarity index 100% rename from data/fixtures/recorded/actions/moveTokenToLine.yml rename to resources/fixtures/recorded/actions/moveTokenToLine.yml diff --git a/data/fixtures/recorded/actions/moveVest.yml b/resources/fixtures/recorded/actions/moveVest.yml similarity index 100% rename from data/fixtures/recorded/actions/moveVest.yml rename to resources/fixtures/recorded/actions/moveVest.yml diff --git a/data/fixtures/recorded/actions/moveVestToCap.yml b/resources/fixtures/recorded/actions/moveVestToCap.yml similarity index 100% rename from data/fixtures/recorded/actions/moveVestToCap.yml rename to resources/fixtures/recorded/actions/moveVestToCap.yml diff --git a/data/fixtures/recorded/actions/parseTreeFile.yml b/resources/fixtures/recorded/actions/parseTreeFile.yml similarity index 100% rename from data/fixtures/recorded/actions/parseTreeFile.yml rename to resources/fixtures/recorded/actions/parseTreeFile.yml diff --git a/data/fixtures/recorded/actions/parsed/bigBringAirPlusCap.yml b/resources/fixtures/recorded/actions/parsed/bigBringAirPlusCap.yml similarity index 100% rename from data/fixtures/recorded/actions/parsed/bigBringAirPlusCap.yml rename to resources/fixtures/recorded/actions/parsed/bigBringAirPlusCap.yml diff --git a/data/fixtures/recorded/actions/parsed/destroyAir.yml b/resources/fixtures/recorded/actions/parsed/destroyAir.yml similarity index 100% rename from data/fixtures/recorded/actions/parsed/destroyAir.yml rename to resources/fixtures/recorded/actions/parsed/destroyAir.yml diff --git a/data/fixtures/recorded/actions/parsed/destroyAirAndEachPastGust.yml b/resources/fixtures/recorded/actions/parsed/destroyAirAndEachPastGust.yml similarity index 100% rename from data/fixtures/recorded/actions/parsed/destroyAirAndEachPastGust.yml rename to resources/fixtures/recorded/actions/parsed/destroyAirAndEachPastGust.yml diff --git a/data/fixtures/recorded/actions/parsed/destruction.yml b/resources/fixtures/recorded/actions/parsed/destruction.yml similarity index 100% rename from data/fixtures/recorded/actions/parsed/destruction.yml rename to resources/fixtures/recorded/actions/parsed/destruction.yml diff --git a/data/fixtures/recorded/actions/pasteAfterArgueBat.yml b/resources/fixtures/recorded/actions/pasteAfterArgueBat.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteAfterArgueBat.yml rename to resources/fixtures/recorded/actions/pasteAfterArgueBat.yml diff --git a/data/fixtures/recorded/actions/pasteAfterLineSpunAndAfterBlockLookAndBeforeLineSpun.yml b/resources/fixtures/recorded/actions/pasteAfterLineSpunAndAfterBlockLookAndBeforeLineSpun.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteAfterLineSpunAndAfterBlockLookAndBeforeLineSpun.yml rename to resources/fixtures/recorded/actions/pasteAfterLineSpunAndAfterBlockLookAndBeforeLineSpun.yml diff --git a/data/fixtures/recorded/actions/pasteAfterLineTrapAndAfterBlockTrap.yml b/resources/fixtures/recorded/actions/pasteAfterLineTrapAndAfterBlockTrap.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteAfterLineTrapAndAfterBlockTrap.yml rename to resources/fixtures/recorded/actions/pasteAfterLineTrapAndAfterBlockTrap.yml diff --git a/data/fixtures/recorded/actions/pasteAfterState.yml b/resources/fixtures/recorded/actions/pasteAfterState.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteAfterState.yml rename to resources/fixtures/recorded/actions/pasteAfterState.yml diff --git a/data/fixtures/recorded/actions/pasteBeforeArgueZip.yml b/resources/fixtures/recorded/actions/pasteBeforeArgueZip.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteBeforeArgueZip.yml rename to resources/fixtures/recorded/actions/pasteBeforeArgueZip.yml diff --git a/data/fixtures/recorded/actions/pasteBeforeState.yml b/resources/fixtures/recorded/actions/pasteBeforeState.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteBeforeState.yml rename to resources/fixtures/recorded/actions/pasteBeforeState.yml diff --git a/data/fixtures/recorded/actions/pasteBeforeToken.yml b/resources/fixtures/recorded/actions/pasteBeforeToken.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteBeforeToken.yml rename to resources/fixtures/recorded/actions/pasteBeforeToken.yml diff --git a/data/fixtures/recorded/actions/pasteCap.yml b/resources/fixtures/recorded/actions/pasteCap.yml similarity index 100% rename from data/fixtures/recorded/actions/pasteCap.yml rename to resources/fixtures/recorded/actions/pasteCap.yml diff --git a/data/fixtures/recorded/actions/phonesSpy.yml b/resources/fixtures/recorded/actions/phonesSpy.yml similarity index 100% rename from data/fixtures/recorded/actions/phonesSpy.yml rename to resources/fixtures/recorded/actions/phonesSpy.yml diff --git a/data/fixtures/recorded/actions/placeHelloAfterAir.yml b/resources/fixtures/recorded/actions/placeHelloAfterAir.yml similarity index 100% rename from data/fixtures/recorded/actions/placeHelloAfterAir.yml rename to resources/fixtures/recorded/actions/placeHelloAfterAir.yml diff --git a/data/fixtures/recorded/actions/placeHelloToFine.yml b/resources/fixtures/recorded/actions/placeHelloToFine.yml similarity index 100% rename from data/fixtures/recorded/actions/placeHelloToFine.yml rename to resources/fixtures/recorded/actions/placeHelloToFine.yml diff --git a/data/fixtures/recorded/actions/postVest.yml b/resources/fixtures/recorded/actions/postVest.yml similarity index 100% rename from data/fixtures/recorded/actions/postVest.yml rename to resources/fixtures/recorded/actions/postVest.yml diff --git a/data/fixtures/recorded/actions/pourArg.yml b/resources/fixtures/recorded/actions/pourArg.yml similarity index 100% rename from data/fixtures/recorded/actions/pourArg.yml rename to resources/fixtures/recorded/actions/pourArg.yml diff --git a/data/fixtures/recorded/actions/pourArg2.yml b/resources/fixtures/recorded/actions/pourArg2.yml similarity index 100% rename from data/fixtures/recorded/actions/pourArg2.yml rename to resources/fixtures/recorded/actions/pourArg2.yml diff --git a/data/fixtures/recorded/actions/pourArg3.yml b/resources/fixtures/recorded/actions/pourArg3.yml similarity index 100% rename from data/fixtures/recorded/actions/pourArg3.yml rename to resources/fixtures/recorded/actions/pourArg3.yml diff --git a/data/fixtures/recorded/actions/pourArg4.yml b/resources/fixtures/recorded/actions/pourArg4.yml similarity index 100% rename from data/fixtures/recorded/actions/pourArg4.yml rename to resources/fixtures/recorded/actions/pourArg4.yml diff --git a/data/fixtures/recorded/actions/pourBlock.yml b/resources/fixtures/recorded/actions/pourBlock.yml similarity index 100% rename from data/fixtures/recorded/actions/pourBlock.yml rename to resources/fixtures/recorded/actions/pourBlock.yml diff --git a/data/fixtures/recorded/actions/pourBlockHarpAndLineWhale.yml b/resources/fixtures/recorded/actions/pourBlockHarpAndLineWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/pourBlockHarpAndLineWhale.yml rename to resources/fixtures/recorded/actions/pourBlockHarpAndLineWhale.yml diff --git a/data/fixtures/recorded/actions/pourFunk.yml b/resources/fixtures/recorded/actions/pourFunk.yml similarity index 100% rename from data/fixtures/recorded/actions/pourFunk.yml rename to resources/fixtures/recorded/actions/pourFunk.yml diff --git a/data/fixtures/recorded/actions/pourHarpAndLookAndTrap.yml b/resources/fixtures/recorded/actions/pourHarpAndLookAndTrap.yml similarity index 100% rename from data/fixtures/recorded/actions/pourHarpAndLookAndTrap.yml rename to resources/fixtures/recorded/actions/pourHarpAndLookAndTrap.yml diff --git a/data/fixtures/recorded/actions/pourItem.yml b/resources/fixtures/recorded/actions/pourItem.yml similarity index 100% rename from data/fixtures/recorded/actions/pourItem.yml rename to resources/fixtures/recorded/actions/pourItem.yml diff --git a/data/fixtures/recorded/actions/pourItem2.yml b/resources/fixtures/recorded/actions/pourItem2.yml similarity index 100% rename from data/fixtures/recorded/actions/pourItem2.yml rename to resources/fixtures/recorded/actions/pourItem2.yml diff --git a/data/fixtures/recorded/actions/pourItem3.yml b/resources/fixtures/recorded/actions/pourItem3.yml similarity index 100% rename from data/fixtures/recorded/actions/pourItem3.yml rename to resources/fixtures/recorded/actions/pourItem3.yml diff --git a/data/fixtures/recorded/actions/pourLine.yml b/resources/fixtures/recorded/actions/pourLine.yml similarity index 100% rename from data/fixtures/recorded/actions/pourLine.yml rename to resources/fixtures/recorded/actions/pourLine.yml diff --git a/data/fixtures/recorded/actions/pourLine2.yml b/resources/fixtures/recorded/actions/pourLine2.yml similarity index 100% rename from data/fixtures/recorded/actions/pourLine2.yml rename to resources/fixtures/recorded/actions/pourLine2.yml diff --git a/data/fixtures/recorded/actions/pourLineHarpAndBlockWhale.yml b/resources/fixtures/recorded/actions/pourLineHarpAndBlockWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/pourLineHarpAndBlockWhale.yml rename to resources/fixtures/recorded/actions/pourLineHarpAndBlockWhale.yml diff --git a/data/fixtures/recorded/actions/pourStateAirAndLineBat.yml b/resources/fixtures/recorded/actions/pourStateAirAndLineBat.yml similarity index 100% rename from data/fixtures/recorded/actions/pourStateAirAndLineBat.yml rename to resources/fixtures/recorded/actions/pourStateAirAndLineBat.yml diff --git a/data/fixtures/recorded/actions/pourThis.yml b/resources/fixtures/recorded/actions/pourThis.yml similarity index 100% rename from data/fixtures/recorded/actions/pourThis.yml rename to resources/fixtures/recorded/actions/pourThis.yml diff --git a/data/fixtures/recorded/actions/pourVest.yml b/resources/fixtures/recorded/actions/pourVest.yml similarity index 100% rename from data/fixtures/recorded/actions/pourVest.yml rename to resources/fixtures/recorded/actions/pourVest.yml diff --git a/data/fixtures/recorded/actions/pourVest2.yml b/resources/fixtures/recorded/actions/pourVest2.yml similarity index 100% rename from data/fixtures/recorded/actions/pourVest2.yml rename to resources/fixtures/recorded/actions/pourVest2.yml diff --git a/data/fixtures/recorded/actions/preeVest.yml b/resources/fixtures/recorded/actions/preeVest.yml similarity index 100% rename from data/fixtures/recorded/actions/preeVest.yml rename to resources/fixtures/recorded/actions/preeVest.yml diff --git a/data/fixtures/recorded/actions/reformatHarpAsSnake.yml b/resources/fixtures/recorded/actions/reformatHarpAsSnake.yml similarity index 100% rename from data/fixtures/recorded/actions/reformatHarpAsSnake.yml rename to resources/fixtures/recorded/actions/reformatHarpAsSnake.yml diff --git a/data/fixtures/recorded/actions/reformatHarpAsSnake2.yml b/resources/fixtures/recorded/actions/reformatHarpAsSnake2.yml similarity index 100% rename from data/fixtures/recorded/actions/reformatHarpAsSnake2.yml rename to resources/fixtures/recorded/actions/reformatHarpAsSnake2.yml diff --git a/data/fixtures/recorded/actions/replaceAirAndBatAndCapWithCount.yml b/resources/fixtures/recorded/actions/replaceAirAndBatAndCapWithCount.yml similarity index 100% rename from data/fixtures/recorded/actions/replaceAirAndBatAndCapWithCount.yml rename to resources/fixtures/recorded/actions/replaceAirAndBatAndCapWithCount.yml diff --git a/data/fixtures/recorded/actions/replaceVestWithWhatever.yml b/resources/fixtures/recorded/actions/replaceVestWithWhatever.yml similarity index 100% rename from data/fixtures/recorded/actions/replaceVestWithWhatever.yml rename to resources/fixtures/recorded/actions/replaceVestWithWhatever.yml diff --git a/data/fixtures/recorded/actions/reverseAirAndBatAndCap.yml b/resources/fixtures/recorded/actions/reverseAirAndBatAndCap.yml similarity index 100% rename from data/fixtures/recorded/actions/reverseAirAndBatAndCap.yml rename to resources/fixtures/recorded/actions/reverseAirAndBatAndCap.yml diff --git a/data/fixtures/recorded/actions/roundWrapThis.yml b/resources/fixtures/recorded/actions/roundWrapThis.yml similarity index 100% rename from data/fixtures/recorded/actions/roundWrapThis.yml rename to resources/fixtures/recorded/actions/roundWrapThis.yml diff --git a/data/fixtures/recorded/actions/roundWrapVest.yml b/resources/fixtures/recorded/actions/roundWrapVest.yml similarity index 100% rename from data/fixtures/recorded/actions/roundWrapVest.yml rename to resources/fixtures/recorded/actions/roundWrapVest.yml diff --git a/data/fixtures/recorded/actions/roundWrapVest2.yml b/resources/fixtures/recorded/actions/roundWrapVest2.yml similarity index 100% rename from data/fixtures/recorded/actions/roundWrapVest2.yml rename to resources/fixtures/recorded/actions/roundWrapVest2.yml diff --git a/data/fixtures/recorded/actions/scoutAir.yml b/resources/fixtures/recorded/actions/scoutAir.yml similarity index 100% rename from data/fixtures/recorded/actions/scoutAir.yml rename to resources/fixtures/recorded/actions/scoutAir.yml diff --git a/data/fixtures/recorded/actions/scoutAllAir.yml b/resources/fixtures/recorded/actions/scoutAllAir.yml similarity index 100% rename from data/fixtures/recorded/actions/scoutAllAir.yml rename to resources/fixtures/recorded/actions/scoutAllAir.yml diff --git a/data/fixtures/recorded/actions/shuffleThis.yml b/resources/fixtures/recorded/actions/shuffleThis.yml similarity index 100% rename from data/fixtures/recorded/actions/shuffleThis.yml rename to resources/fixtures/recorded/actions/shuffleThis.yml diff --git a/data/fixtures/recorded/actions/snippets/customInsert.yml b/resources/fixtures/recorded/actions/snippets/customInsert.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/customInsert.yml rename to resources/fixtures/recorded/actions/snippets/customInsert.yml diff --git a/data/fixtures/recorded/actions/snippets/customInsertAfterWhale.yml b/resources/fixtures/recorded/actions/snippets/customInsertAfterWhale.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/customInsertAfterWhale.yml rename to resources/fixtures/recorded/actions/snippets/customInsertAfterWhale.yml diff --git a/data/fixtures/recorded/actions/snippets/customInsertAfterWhale2.yml b/resources/fixtures/recorded/actions/snippets/customInsertAfterWhale2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/customInsertAfterWhale2.yml rename to resources/fixtures/recorded/actions/snippets/customInsertAfterWhale2.yml diff --git a/data/fixtures/recorded/actions/snippets/customInsertHelloWorld.yml b/resources/fixtures/recorded/actions/snippets/customInsertHelloWorld.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/customInsertHelloWorld.yml rename to resources/fixtures/recorded/actions/snippets/customInsertHelloWorld.yml diff --git a/data/fixtures/recorded/actions/snippets/customWrapHarp.yml b/resources/fixtures/recorded/actions/snippets/customWrapHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/customWrapHarp.yml rename to resources/fixtures/recorded/actions/snippets/customWrapHarp.yml diff --git a/data/fixtures/recorded/actions/snippets/customWrapLine.yml b/resources/fixtures/recorded/actions/snippets/customWrapLine.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/customWrapLine.yml rename to resources/fixtures/recorded/actions/snippets/customWrapLine.yml diff --git a/data/fixtures/recorded/actions/snippets/customWrapLine2.yml b/resources/fixtures/recorded/actions/snippets/customWrapLine2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/customWrapLine2.yml rename to resources/fixtures/recorded/actions/snippets/customWrapLine2.yml diff --git a/data/fixtures/recorded/actions/snippets/duplicatedDuplicatedWrapThis.yml b/resources/fixtures/recorded/actions/snippets/duplicatedDuplicatedWrapThis.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/duplicatedDuplicatedWrapThis.yml rename to resources/fixtures/recorded/actions/snippets/duplicatedDuplicatedWrapThis.yml diff --git a/data/fixtures/recorded/actions/snippets/duplicatedUniqueWrapThis.yml b/resources/fixtures/recorded/actions/snippets/duplicatedUniqueWrapThis.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/duplicatedUniqueWrapThis.yml rename to resources/fixtures/recorded/actions/snippets/duplicatedUniqueWrapThis.yml diff --git a/data/fixtures/recorded/actions/snippets/funkWrapClass.yml b/resources/fixtures/recorded/actions/snippets/funkWrapClass.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/funkWrapClass.yml rename to resources/fixtures/recorded/actions/snippets/funkWrapClass.yml diff --git a/data/fixtures/recorded/actions/snippets/ifWrapAir.yml b/resources/fixtures/recorded/actions/snippets/ifWrapAir.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/ifWrapAir.yml rename to resources/fixtures/recorded/actions/snippets/ifWrapAir.yml diff --git a/data/fixtures/recorded/actions/snippets/ifWrapAir2.yml b/resources/fixtures/recorded/actions/snippets/ifWrapAir2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/ifWrapAir2.yml rename to resources/fixtures/recorded/actions/snippets/ifWrapAir2.yml diff --git a/data/fixtures/recorded/actions/snippets/ifWrapCap.yml b/resources/fixtures/recorded/actions/snippets/ifWrapCap.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/ifWrapCap.yml rename to resources/fixtures/recorded/actions/snippets/ifWrapCap.yml diff --git a/data/fixtures/recorded/actions/snippets/snipCode.yml b/resources/fixtures/recorded/actions/snippets/snipCode.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipCode.yml rename to resources/fixtures/recorded/actions/snippets/snipCode.yml diff --git a/data/fixtures/recorded/actions/snippets/snipDuplicatedDuplicated.yml b/resources/fixtures/recorded/actions/snippets/snipDuplicatedDuplicated.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipDuplicatedDuplicated.yml rename to resources/fixtures/recorded/actions/snippets/snipDuplicatedDuplicated.yml diff --git a/data/fixtures/recorded/actions/snippets/snipDuplicatedDuplicatedHelloWorld.yml b/resources/fixtures/recorded/actions/snippets/snipDuplicatedDuplicatedHelloWorld.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipDuplicatedDuplicatedHelloWorld.yml rename to resources/fixtures/recorded/actions/snippets/snipDuplicatedDuplicatedHelloWorld.yml diff --git a/data/fixtures/recorded/actions/snippets/snipDuplicatedUniqueHelloWorld.yml b/resources/fixtures/recorded/actions/snippets/snipDuplicatedUniqueHelloWorld.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipDuplicatedUniqueHelloWorld.yml rename to resources/fixtures/recorded/actions/snippets/snipDuplicatedUniqueHelloWorld.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunk.yml b/resources/fixtures/recorded/actions/snippets/snipFunk.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunk.yml rename to resources/fixtures/recorded/actions/snippets/snipFunk.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunk2.yml b/resources/fixtures/recorded/actions/snippets/snipFunk2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunk2.yml rename to resources/fixtures/recorded/actions/snippets/snipFunk2.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunk3.yml b/resources/fixtures/recorded/actions/snippets/snipFunk3.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunk3.yml rename to resources/fixtures/recorded/actions/snippets/snipFunk3.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunk4.yml b/resources/fixtures/recorded/actions/snippets/snipFunk4.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunk4.yml rename to resources/fixtures/recorded/actions/snippets/snipFunk4.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunk5.yml b/resources/fixtures/recorded/actions/snippets/snipFunk5.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunk5.yml rename to resources/fixtures/recorded/actions/snippets/snipFunk5.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunk6.yml b/resources/fixtures/recorded/actions/snippets/snipFunk6.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunk6.yml rename to resources/fixtures/recorded/actions/snippets/snipFunk6.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterClass.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterClass.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterClass.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterClass.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterFineAndZip.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterFineAndZip.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterFineAndZip.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterFineAndZip.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterMadeAndBeforeFineAndZip.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterMadeAndBeforeFineAndZip.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterMadeAndBeforeFineAndZip.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterMadeAndBeforeFineAndZip.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterThis.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterThis.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterThis.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterThis.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterThis2.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterThis2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterThis2.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterThis2.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterThis3.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterThis3.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterThis3.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterThis3.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterThis4.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterThis4.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterThis4.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterThis4.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterThis5.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterThis5.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterThis5.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterThis5.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkAfterZipAndBeforeFine.yml b/resources/fixtures/recorded/actions/snippets/snipFunkAfterZipAndBeforeFine.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkAfterZipAndBeforeFine.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkAfterZipAndBeforeFine.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkBeforeClass.yml b/resources/fixtures/recorded/actions/snippets/snipFunkBeforeClass.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkBeforeClass.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkBeforeClass.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkBeforeThis.yml b/resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkBeforeThis.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkBeforeThis2.yml b/resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkBeforeThis2.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis2.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkBeforeThis3.yml b/resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis3.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkBeforeThis3.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis3.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkBeforeThis4.yml b/resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis4.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkBeforeThis4.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkBeforeThis4.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkCelloWorld.yml b/resources/fixtures/recorded/actions/snippets/snipFunkCelloWorld.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkCelloWorld.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkCelloWorld.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkHelloWorld.yml b/resources/fixtures/recorded/actions/snippets/snipFunkHelloWorld.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkHelloWorld.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkHelloWorld.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkHelloWorld2.yml b/resources/fixtures/recorded/actions/snippets/snipFunkHelloWorld2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkHelloWorld2.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkHelloWorld2.yml diff --git a/data/fixtures/recorded/actions/snippets/snipFunkHelloWorld3.yml b/resources/fixtures/recorded/actions/snippets/snipFunkHelloWorld3.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipFunkHelloWorld3.yml rename to resources/fixtures/recorded/actions/snippets/snipFunkHelloWorld3.yml diff --git a/data/fixtures/recorded/actions/snippets/snipIf.yml b/resources/fixtures/recorded/actions/snippets/snipIf.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipIf.yml rename to resources/fixtures/recorded/actions/snippets/snipIf.yml diff --git a/data/fixtures/recorded/actions/snippets/snipIf2.yml b/resources/fixtures/recorded/actions/snippets/snipIf2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipIf2.yml rename to resources/fixtures/recorded/actions/snippets/snipIf2.yml diff --git a/data/fixtures/recorded/actions/snippets/snipIfAfterAirAndBat.yml b/resources/fixtures/recorded/actions/snippets/snipIfAfterAirAndBat.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipIfAfterAirAndBat.yml rename to resources/fixtures/recorded/actions/snippets/snipIfAfterAirAndBat.yml diff --git a/data/fixtures/recorded/actions/snippets/snipMakeFunk.yml b/resources/fixtures/recorded/actions/snippets/snipMakeFunk.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipMakeFunk.yml rename to resources/fixtures/recorded/actions/snippets/snipMakeFunk.yml diff --git a/data/fixtures/recorded/actions/snippets/snipMakeFunk2.yml b/resources/fixtures/recorded/actions/snippets/snipMakeFunk2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipMakeFunk2.yml rename to resources/fixtures/recorded/actions/snippets/snipMakeFunk2.yml diff --git a/data/fixtures/recorded/actions/snippets/snipMakeState.yml b/resources/fixtures/recorded/actions/snippets/snipMakeState.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipMakeState.yml rename to resources/fixtures/recorded/actions/snippets/snipMakeState.yml diff --git a/data/fixtures/recorded/actions/snippets/snipMakeState2.yml b/resources/fixtures/recorded/actions/snippets/snipMakeState2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipMakeState2.yml rename to resources/fixtures/recorded/actions/snippets/snipMakeState2.yml diff --git a/data/fixtures/recorded/actions/snippets/snipPrintAfterPit.yml b/resources/fixtures/recorded/actions/snippets/snipPrintAfterPit.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/snipPrintAfterPit.yml rename to resources/fixtures/recorded/actions/snippets/snipPrintAfterPit.yml diff --git a/data/fixtures/recorded/actions/snippets/testSnippetMakeLine.yml b/resources/fixtures/recorded/actions/snippets/testSnippetMakeLine.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/testSnippetMakeLine.yml rename to resources/fixtures/recorded/actions/snippets/testSnippetMakeLine.yml diff --git a/data/fixtures/recorded/actions/snippets/testSnippetMakeLine2.yml b/resources/fixtures/recorded/actions/snippets/testSnippetMakeLine2.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/testSnippetMakeLine2.yml rename to resources/fixtures/recorded/actions/snippets/testSnippetMakeLine2.yml diff --git a/data/fixtures/recorded/actions/snippets/tryWrapThis.yml b/resources/fixtures/recorded/actions/snippets/tryWrapThis.yml similarity index 100% rename from data/fixtures/recorded/actions/snippets/tryWrapThis.yml rename to resources/fixtures/recorded/actions/snippets/tryWrapThis.yml diff --git a/data/fixtures/recorded/actions/sortAirAndCapAndBat.yml b/resources/fixtures/recorded/actions/sortAirAndCapAndBat.yml similarity index 100% rename from data/fixtures/recorded/actions/sortAirAndCapAndBat.yml rename to resources/fixtures/recorded/actions/sortAirAndCapAndBat.yml diff --git a/data/fixtures/recorded/actions/sortEveryItem.yml b/resources/fixtures/recorded/actions/sortEveryItem.yml similarity index 100% rename from data/fixtures/recorded/actions/sortEveryItem.yml rename to resources/fixtures/recorded/actions/sortEveryItem.yml diff --git a/data/fixtures/recorded/actions/sortEveryItem2.yml b/resources/fixtures/recorded/actions/sortEveryItem2.yml similarity index 100% rename from data/fixtures/recorded/actions/sortEveryItem2.yml rename to resources/fixtures/recorded/actions/sortEveryItem2.yml diff --git a/data/fixtures/recorded/actions/sortThis.yml b/resources/fixtures/recorded/actions/sortThis.yml similarity index 100% rename from data/fixtures/recorded/actions/sortThis.yml rename to resources/fixtures/recorded/actions/sortThis.yml diff --git a/data/fixtures/recorded/actions/sortThis2.yml b/resources/fixtures/recorded/actions/sortThis2.yml similarity index 100% rename from data/fixtures/recorded/actions/sortThis2.yml rename to resources/fixtures/recorded/actions/sortThis2.yml diff --git a/data/fixtures/recorded/actions/squareRepackHarp.yml b/resources/fixtures/recorded/actions/squareRepackHarp.yml similarity index 100% rename from data/fixtures/recorded/actions/squareRepackHarp.yml rename to resources/fixtures/recorded/actions/squareRepackHarp.yml diff --git a/data/fixtures/recorded/actions/squareRepackLeper.yml b/resources/fixtures/recorded/actions/squareRepackLeper.yml similarity index 100% rename from data/fixtures/recorded/actions/squareRepackLeper.yml rename to resources/fixtures/recorded/actions/squareRepackLeper.yml diff --git a/data/fixtures/recorded/actions/squareRepackPair.yml b/resources/fixtures/recorded/actions/squareRepackPair.yml similarity index 100% rename from data/fixtures/recorded/actions/squareRepackPair.yml rename to resources/fixtures/recorded/actions/squareRepackPair.yml diff --git a/data/fixtures/recorded/actions/squareRepackThis.yml b/resources/fixtures/recorded/actions/squareRepackThis.yml similarity index 100% rename from data/fixtures/recorded/actions/squareRepackThis.yml rename to resources/fixtures/recorded/actions/squareRepackThis.yml diff --git a/data/fixtures/recorded/actions/swapVestWithCap.yml b/resources/fixtures/recorded/actions/swapVestWithCap.yml similarity index 100% rename from data/fixtures/recorded/actions/swapVestWithCap.yml rename to resources/fixtures/recorded/actions/swapVestWithCap.yml diff --git a/data/fixtures/recorded/actions/swapWithVest.yml b/resources/fixtures/recorded/actions/swapWithVest.yml similarity index 100% rename from data/fixtures/recorded/actions/swapWithVest.yml rename to resources/fixtures/recorded/actions/swapWithVest.yml diff --git a/data/fixtures/recorded/actions/takeVest.yml b/resources/fixtures/recorded/actions/takeVest.yml similarity index 100% rename from data/fixtures/recorded/actions/takeVest.yml rename to resources/fixtures/recorded/actions/takeVest.yml diff --git a/data/fixtures/recorded/actions/voidWrapAir.yml b/resources/fixtures/recorded/actions/voidWrapAir.yml similarity index 100% rename from data/fixtures/recorded/actions/voidWrapAir.yml rename to resources/fixtures/recorded/actions/voidWrapAir.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCap.yml b/resources/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCap.yml rename to resources/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCap.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCapAndDrum.yml b/resources/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCapAndDrum.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCapAndDrum.yml rename to resources/fixtures/recorded/compoundTargets/bringAirBeforeBattAndAfterCapAndDrum.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirBeforeBattAndCap.yml b/resources/fixtures/recorded/compoundTargets/bringAirBeforeBattAndCap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirBeforeBattAndCap.yml rename to resources/fixtures/recorded/compoundTargets/bringAirBeforeBattAndCap.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirToAfterBatVerticalPastFine.yml b/resources/fixtures/recorded/compoundTargets/bringAirToAfterBatVerticalPastFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirToAfterBatVerticalPastFine.yml rename to resources/fixtures/recorded/compoundTargets/bringAirToAfterBatVerticalPastFine.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirToBatVerticalPastFine.yml b/resources/fixtures/recorded/compoundTargets/bringAirToBatVerticalPastFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirToBatVerticalPastFine.yml rename to resources/fixtures/recorded/compoundTargets/bringAirToBatVerticalPastFine.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirToBeforeBatVerticalPastFine.yml b/resources/fixtures/recorded/compoundTargets/bringAirToBeforeBatVerticalPastFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirToBeforeBatVerticalPastFine.yml rename to resources/fixtures/recorded/compoundTargets/bringAirToBeforeBatVerticalPastFine.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirToEndOfBatVerticalPastFine.yml b/resources/fixtures/recorded/compoundTargets/bringAirToEndOfBatVerticalPastFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirToEndOfBatVerticalPastFine.yml rename to resources/fixtures/recorded/compoundTargets/bringAirToEndOfBatVerticalPastFine.yml diff --git a/data/fixtures/recorded/compoundTargets/bringAirToStartOfBatVerticalPastFine.yml b/resources/fixtures/recorded/compoundTargets/bringAirToStartOfBatVerticalPastFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/bringAirToStartOfBatVerticalPastFine.yml rename to resources/fixtures/recorded/compoundTargets/bringAirToStartOfBatVerticalPastFine.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckBlockEachBetweenLook.yml b/resources/fixtures/recorded/compoundTargets/chuckBlockEachBetweenLook.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckBlockEachBetweenLook.yml rename to resources/fixtures/recorded/compoundTargets/chuckBlockEachBetweenLook.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckBlockEachUntilLook.yml b/resources/fixtures/recorded/compoundTargets/chuckBlockEachUntilLook.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckBlockEachUntilLook.yml rename to resources/fixtures/recorded/compoundTargets/chuckBlockEachUntilLook.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook.yml b/resources/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook.yml rename to resources/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook2.yml b/resources/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook2.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook2.yml rename to resources/fixtures/recorded/compoundTargets/chuckLineEachBetweenLook2.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckLineEachUntilLook.yml b/resources/fixtures/recorded/compoundTargets/chuckLineEachUntilLook.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckLineEachUntilLook.yml rename to resources/fixtures/recorded/compoundTargets/chuckLineEachUntilLook.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckLineHarpBetweenFine.yml b/resources/fixtures/recorded/compoundTargets/chuckLineHarpBetweenFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckLineHarpBetweenFine.yml rename to resources/fixtures/recorded/compoundTargets/chuckLineHarpBetweenFine.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckLineRiskSliceMade.yml b/resources/fixtures/recorded/compoundTargets/chuckLineRiskSliceMade.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckLineRiskSliceMade.yml rename to resources/fixtures/recorded/compoundTargets/chuckLineRiskSliceMade.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckStartOfBattPastEndOfFine.yml b/resources/fixtures/recorded/compoundTargets/chuckStartOfBattPastEndOfFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckStartOfBattPastEndOfFine.yml rename to resources/fixtures/recorded/compoundTargets/chuckStartOfBattPastEndOfFine.yml diff --git a/data/fixtures/recorded/compoundTargets/chuckStartOfBlockPastStartOfFile.yml b/resources/fixtures/recorded/compoundTargets/chuckStartOfBlockPastStartOfFile.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/chuckStartOfBlockPastStartOfFile.yml rename to resources/fixtures/recorded/compoundTargets/chuckStartOfBlockPastStartOfFile.yml diff --git a/data/fixtures/recorded/compoundTargets/clearJustThisPastBatt.yml b/resources/fixtures/recorded/compoundTargets/clearJustThisPastBatt.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearJustThisPastBatt.yml rename to resources/fixtures/recorded/compoundTargets/clearJustThisPastBatt.yml diff --git a/data/fixtures/recorded/compoundTargets/clearJustThisPastEndOfToken.yml b/resources/fixtures/recorded/compoundTargets/clearJustThisPastEndOfToken.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearJustThisPastEndOfToken.yml rename to resources/fixtures/recorded/compoundTargets/clearJustThisPastEndOfToken.yml diff --git a/data/fixtures/recorded/compoundTargets/clearJustThisPastStartOfToken.yml b/resources/fixtures/recorded/compoundTargets/clearJustThisPastStartOfToken.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearJustThisPastStartOfToken.yml rename to resources/fixtures/recorded/compoundTargets/clearJustThisPastStartOfToken.yml diff --git a/data/fixtures/recorded/compoundTargets/clearJustThisPastTrap.yml b/resources/fixtures/recorded/compoundTargets/clearJustThisPastTrap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearJustThisPastTrap.yml rename to resources/fixtures/recorded/compoundTargets/clearJustThisPastTrap.yml diff --git a/data/fixtures/recorded/compoundTargets/clearPastBatt.yml b/resources/fixtures/recorded/compoundTargets/clearPastBatt.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearPastBatt.yml rename to resources/fixtures/recorded/compoundTargets/clearPastBatt.yml diff --git a/data/fixtures/recorded/compoundTargets/clearPastEndOfToken.yml b/resources/fixtures/recorded/compoundTargets/clearPastEndOfToken.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearPastEndOfToken.yml rename to resources/fixtures/recorded/compoundTargets/clearPastEndOfToken.yml diff --git a/data/fixtures/recorded/compoundTargets/clearPastStartOfToken.yml b/resources/fixtures/recorded/compoundTargets/clearPastStartOfToken.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearPastStartOfToken.yml rename to resources/fixtures/recorded/compoundTargets/clearPastStartOfToken.yml diff --git a/data/fixtures/recorded/compoundTargets/clearPastTrap.yml b/resources/fixtures/recorded/compoundTargets/clearPastTrap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearPastTrap.yml rename to resources/fixtures/recorded/compoundTargets/clearPastTrap.yml diff --git a/data/fixtures/recorded/compoundTargets/clearThisPastBatt.yml b/resources/fixtures/recorded/compoundTargets/clearThisPastBatt.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearThisPastBatt.yml rename to resources/fixtures/recorded/compoundTargets/clearThisPastBatt.yml diff --git a/data/fixtures/recorded/compoundTargets/clearThisPastEndOfToken.yml b/resources/fixtures/recorded/compoundTargets/clearThisPastEndOfToken.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearThisPastEndOfToken.yml rename to resources/fixtures/recorded/compoundTargets/clearThisPastEndOfToken.yml diff --git a/data/fixtures/recorded/compoundTargets/clearThisPastStartOfToken.yml b/resources/fixtures/recorded/compoundTargets/clearThisPastStartOfToken.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearThisPastStartOfToken.yml rename to resources/fixtures/recorded/compoundTargets/clearThisPastStartOfToken.yml diff --git a/data/fixtures/recorded/compoundTargets/clearThisPastTrap.yml b/resources/fixtures/recorded/compoundTargets/clearThisPastTrap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearThisPastTrap.yml rename to resources/fixtures/recorded/compoundTargets/clearThisPastTrap.yml diff --git a/data/fixtures/recorded/compoundTargets/clearThisSliceBatt.yml b/resources/fixtures/recorded/compoundTargets/clearThisSliceBatt.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/clearThisSliceBatt.yml rename to resources/fixtures/recorded/compoundTargets/clearThisSliceBatt.yml diff --git a/data/fixtures/recorded/compoundTargets/listTargetSingleElement.yml b/resources/fixtures/recorded/compoundTargets/listTargetSingleElement.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/listTargetSingleElement.yml rename to resources/fixtures/recorded/compoundTargets/listTargetSingleElement.yml diff --git a/data/fixtures/recorded/compoundTargets/listTargetZeroElements.yml b/resources/fixtures/recorded/compoundTargets/listTargetZeroElements.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/listTargetZeroElements.yml rename to resources/fixtures/recorded/compoundTargets/listTargetZeroElements.yml diff --git a/data/fixtures/recorded/compoundTargets/postBatVerticalUntilFine.yml b/resources/fixtures/recorded/compoundTargets/postBatVerticalUntilFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/postBatVerticalUntilFine.yml rename to resources/fixtures/recorded/compoundTargets/postBatVerticalUntilFine.yml diff --git a/data/fixtures/recorded/compoundTargets/preBatVerticalBetweenFine.yml b/resources/fixtures/recorded/compoundTargets/preBatVerticalBetweenFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/preBatVerticalBetweenFine.yml rename to resources/fixtures/recorded/compoundTargets/preBatVerticalBetweenFine.yml diff --git a/data/fixtures/recorded/compoundTargets/takeBatVerticalPastFine.yml b/resources/fixtures/recorded/compoundTargets/takeBatVerticalPastFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeBatVerticalPastFine.yml rename to resources/fixtures/recorded/compoundTargets/takeBatVerticalPastFine.yml diff --git a/data/fixtures/recorded/compoundTargets/takeCapAndVestAndHarp.yml b/resources/fixtures/recorded/compoundTargets/takeCapAndVestAndHarp.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeCapAndVestAndHarp.yml rename to resources/fixtures/recorded/compoundTargets/takeCapAndVestAndHarp.yml diff --git a/data/fixtures/recorded/compoundTargets/takeCapPastHarp.yml b/resources/fixtures/recorded/compoundTargets/takeCapPastHarp.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeCapPastHarp.yml rename to resources/fixtures/recorded/compoundTargets/takeCapPastHarp.yml diff --git a/data/fixtures/recorded/compoundTargets/takeFineVerticalPastBat.yml b/resources/fixtures/recorded/compoundTargets/takeFineVerticalPastBat.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeFineVerticalPastBat.yml rename to resources/fixtures/recorded/compoundTargets/takeFineVerticalPastBat.yml diff --git a/data/fixtures/recorded/compoundTargets/takeHarpAndVestAndCap.yml b/resources/fixtures/recorded/compoundTargets/takeHarpAndVestAndCap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeHarpAndVestAndCap.yml rename to resources/fixtures/recorded/compoundTargets/takeHarpAndVestAndCap.yml diff --git a/data/fixtures/recorded/compoundTargets/takeHarpPastCap.yml b/resources/fixtures/recorded/compoundTargets/takeHarpPastCap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeHarpPastCap.yml rename to resources/fixtures/recorded/compoundTargets/takeHarpPastCap.yml diff --git a/data/fixtures/recorded/compoundTargets/takeLineVestAndAir.yml b/resources/fixtures/recorded/compoundTargets/takeLineVestAndAir.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeLineVestAndAir.yml rename to resources/fixtures/recorded/compoundTargets/takeLineVestAndAir.yml diff --git a/data/fixtures/recorded/compoundTargets/takeStartOfAirAndBattAndEndOfCapAndDrum.yml b/resources/fixtures/recorded/compoundTargets/takeStartOfAirAndBattAndEndOfCapAndDrum.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeStartOfAirAndBattAndEndOfCapAndDrum.yml rename to resources/fixtures/recorded/compoundTargets/takeStartOfAirAndBattAndEndOfCapAndDrum.yml diff --git a/data/fixtures/recorded/compoundTargets/takeStartOfBattAndEndOfBatt.yml b/resources/fixtures/recorded/compoundTargets/takeStartOfBattAndEndOfBatt.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeStartOfBattAndEndOfBatt.yml rename to resources/fixtures/recorded/compoundTargets/takeStartOfBattAndEndOfBatt.yml diff --git a/data/fixtures/recorded/compoundTargets/takeTokenPastTrap.yml b/resources/fixtures/recorded/compoundTargets/takeTokenPastTrap.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeTokenPastTrap.yml rename to resources/fixtures/recorded/compoundTargets/takeTokenPastTrap.yml diff --git a/data/fixtures/recorded/compoundTargets/takeVerticalPastFine.yml b/resources/fixtures/recorded/compoundTargets/takeVerticalPastFine.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeVerticalPastFine.yml rename to resources/fixtures/recorded/compoundTargets/takeVerticalPastFine.yml diff --git a/data/fixtures/recorded/compoundTargets/takeVestTweenWhale.yml b/resources/fixtures/recorded/compoundTargets/takeVestTweenWhale.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeVestTweenWhale.yml rename to resources/fixtures/recorded/compoundTargets/takeVestTweenWhale.yml diff --git a/data/fixtures/recorded/compoundTargets/takeVestUntilWhale.yml b/resources/fixtures/recorded/compoundTargets/takeVestUntilWhale.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeVestUntilWhale.yml rename to resources/fixtures/recorded/compoundTargets/takeVestUntilWhale.yml diff --git a/data/fixtures/recorded/compoundTargets/takeWhaleTweenVest.yml b/resources/fixtures/recorded/compoundTargets/takeWhaleTweenVest.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeWhaleTweenVest.yml rename to resources/fixtures/recorded/compoundTargets/takeWhaleTweenVest.yml diff --git a/data/fixtures/recorded/compoundTargets/takeWhaleUntilVest.yml b/resources/fixtures/recorded/compoundTargets/takeWhaleUntilVest.yml similarity index 100% rename from data/fixtures/recorded/compoundTargets/takeWhaleUntilVest.yml rename to resources/fixtures/recorded/compoundTargets/takeWhaleUntilVest.yml diff --git a/data/fixtures/recorded/containingScope/changeGrandGrandState.yml b/resources/fixtures/recorded/containingScope/changeGrandGrandState.yml similarity index 100% rename from data/fixtures/recorded/containingScope/changeGrandGrandState.yml rename to resources/fixtures/recorded/containingScope/changeGrandGrandState.yml diff --git a/data/fixtures/recorded/containingScope/changeGrandState.yml b/resources/fixtures/recorded/containingScope/changeGrandState.yml similarity index 100% rename from data/fixtures/recorded/containingScope/changeGrandState.yml rename to resources/fixtures/recorded/containingScope/changeGrandState.yml diff --git a/data/fixtures/recorded/containingScope/changeGrandState2.yml b/resources/fixtures/recorded/containingScope/changeGrandState2.yml similarity index 100% rename from data/fixtures/recorded/containingScope/changeGrandState2.yml rename to resources/fixtures/recorded/containingScope/changeGrandState2.yml diff --git a/data/fixtures/recorded/containingScope/changeGrandState3.yml b/resources/fixtures/recorded/containingScope/changeGrandState3.yml similarity index 100% rename from data/fixtures/recorded/containingScope/changeGrandState3.yml rename to resources/fixtures/recorded/containingScope/changeGrandState3.yml diff --git a/data/fixtures/recorded/containingScope/clearCall.yml b/resources/fixtures/recorded/containingScope/clearCall.yml similarity index 100% rename from data/fixtures/recorded/containingScope/clearCall.yml rename to resources/fixtures/recorded/containingScope/clearCall.yml diff --git a/data/fixtures/recorded/containingScope/clearCall2.yml b/resources/fixtures/recorded/containingScope/clearCall2.yml similarity index 100% rename from data/fixtures/recorded/containingScope/clearCall2.yml rename to resources/fixtures/recorded/containingScope/clearCall2.yml diff --git a/data/fixtures/recorded/containingScope/clearCall3.yml b/resources/fixtures/recorded/containingScope/clearCall3.yml similarity index 100% rename from data/fixtures/recorded/containingScope/clearCall3.yml rename to resources/fixtures/recorded/containingScope/clearCall3.yml diff --git a/data/fixtures/recorded/containingScope/clearCall4.yml b/resources/fixtures/recorded/containingScope/clearCall4.yml similarity index 100% rename from data/fixtures/recorded/containingScope/clearCall4.yml rename to resources/fixtures/recorded/containingScope/clearCall4.yml diff --git a/data/fixtures/recorded/containingScope/clearToken.yml b/resources/fixtures/recorded/containingScope/clearToken.yml similarity index 100% rename from data/fixtures/recorded/containingScope/clearToken.yml rename to resources/fixtures/recorded/containingScope/clearToken.yml diff --git a/data/fixtures/recorded/containingScope/clearWord.yml b/resources/fixtures/recorded/containingScope/clearWord.yml similarity index 100% rename from data/fixtures/recorded/containingScope/clearWord.yml rename to resources/fixtures/recorded/containingScope/clearWord.yml diff --git a/data/fixtures/recorded/containingScope/clearWord2.yml b/resources/fixtures/recorded/containingScope/clearWord2.yml similarity index 100% rename from data/fixtures/recorded/containingScope/clearWord2.yml rename to resources/fixtures/recorded/containingScope/clearWord2.yml diff --git a/data/fixtures/recorded/customRegex/clearWhite.yml b/resources/fixtures/recorded/customRegex/clearWhite.yml similarity index 100% rename from data/fixtures/recorded/customRegex/clearWhite.yml rename to resources/fixtures/recorded/customRegex/clearWhite.yml diff --git a/data/fixtures/recorded/decorations/carveLineHarp.yml b/resources/fixtures/recorded/decorations/carveLineHarp.yml similarity index 100% rename from data/fixtures/recorded/decorations/carveLineHarp.yml rename to resources/fixtures/recorded/decorations/carveLineHarp.yml diff --git a/data/fixtures/recorded/decorations/chuckBlockAir.yml b/resources/fixtures/recorded/decorations/chuckBlockAir.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckBlockAir.yml rename to resources/fixtures/recorded/decorations/chuckBlockAir.yml diff --git a/data/fixtures/recorded/decorations/chuckBlockAirUntilBatt.yml b/resources/fixtures/recorded/decorations/chuckBlockAirUntilBatt.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckBlockAirUntilBatt.yml rename to resources/fixtures/recorded/decorations/chuckBlockAirUntilBatt.yml diff --git a/data/fixtures/recorded/decorations/chuckBlockBatt.yml b/resources/fixtures/recorded/decorations/chuckBlockBatt.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckBlockBatt.yml rename to resources/fixtures/recorded/decorations/chuckBlockBatt.yml diff --git a/data/fixtures/recorded/decorations/chuckBlockBatt2.yml b/resources/fixtures/recorded/decorations/chuckBlockBatt2.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckBlockBatt2.yml rename to resources/fixtures/recorded/decorations/chuckBlockBatt2.yml diff --git a/data/fixtures/recorded/decorations/chuckBlockBattUntilAir.yml b/resources/fixtures/recorded/decorations/chuckBlockBattUntilAir.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckBlockBattUntilAir.yml rename to resources/fixtures/recorded/decorations/chuckBlockBattUntilAir.yml diff --git a/data/fixtures/recorded/decorations/chuckFine.yml b/resources/fixtures/recorded/decorations/chuckFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckFine.yml rename to resources/fixtures/recorded/decorations/chuckFine.yml diff --git a/data/fixtures/recorded/decorations/chuckLineFine.yml b/resources/fixtures/recorded/decorations/chuckLineFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckLineFine.yml rename to resources/fixtures/recorded/decorations/chuckLineFine.yml diff --git a/data/fixtures/recorded/decorations/chuckLineFineBetweenRisk.yml b/resources/fixtures/recorded/decorations/chuckLineFineBetweenRisk.yml similarity index 100% rename from data/fixtures/recorded/decorations/chuckLineFineBetweenRisk.yml rename to resources/fixtures/recorded/decorations/chuckLineFineBetweenRisk.yml diff --git a/data/fixtures/recorded/decorations/clearBlockFine.yml b/resources/fixtures/recorded/decorations/clearBlockFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/clearBlockFine.yml rename to resources/fixtures/recorded/decorations/clearBlockFine.yml diff --git a/data/fixtures/recorded/decorations/clearFine.yml b/resources/fixtures/recorded/decorations/clearFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/clearFine.yml rename to resources/fixtures/recorded/decorations/clearFine.yml diff --git a/data/fixtures/recorded/decorations/clearLineFine.yml b/resources/fixtures/recorded/decorations/clearLineFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/clearLineFine.yml rename to resources/fixtures/recorded/decorations/clearLineFine.yml diff --git a/data/fixtures/recorded/decorations/config.json b/resources/fixtures/recorded/decorations/config.json similarity index 100% rename from data/fixtures/recorded/decorations/config.json rename to resources/fixtures/recorded/decorations/config.json diff --git a/data/fixtures/recorded/decorations/cutFine.yml b/resources/fixtures/recorded/decorations/cutFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/cutFine.yml rename to resources/fixtures/recorded/decorations/cutFine.yml diff --git a/data/fixtures/recorded/decorations/highlightFine.yml b/resources/fixtures/recorded/decorations/highlightFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/highlightFine.yml rename to resources/fixtures/recorded/decorations/highlightFine.yml diff --git a/data/fixtures/recorded/decorations/highlightLineFine.yml b/resources/fixtures/recorded/decorations/highlightLineFine.yml similarity index 100% rename from data/fixtures/recorded/decorations/highlightLineFine.yml rename to resources/fixtures/recorded/decorations/highlightLineFine.yml diff --git a/data/fixtures/recorded/decorations/moveLineAir.yml b/resources/fixtures/recorded/decorations/moveLineAir.yml similarity index 100% rename from data/fixtures/recorded/decorations/moveLineAir.yml rename to resources/fixtures/recorded/decorations/moveLineAir.yml diff --git a/data/fixtures/recorded/everyRange/bringAirAfterBatAndEveryTokenFinePastHarp.yml b/resources/fixtures/recorded/everyRange/bringAirAfterBatAndEveryTokenFinePastHarp.yml similarity index 100% rename from data/fixtures/recorded/everyRange/bringAirAfterBatAndEveryTokenFinePastHarp.yml rename to resources/fixtures/recorded/everyRange/bringAirAfterBatAndEveryTokenFinePastHarp.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryFunkNameDrumBetweenEach.yml b/resources/fixtures/recorded/everyRange/clearEveryFunkNameDrumBetweenEach.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryFunkNameDrumBetweenEach.yml rename to resources/fixtures/recorded/everyRange/clearEveryFunkNameDrumBetweenEach.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryFunkNameFinePastBlueDrum.yml b/resources/fixtures/recorded/everyRange/clearEveryFunkNameFinePastBlueDrum.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryFunkNameFinePastBlueDrum.yml rename to resources/fixtures/recorded/everyRange/clearEveryFunkNameFinePastBlueDrum.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryFunkNamePastBlueDrum.yml b/resources/fixtures/recorded/everyRange/clearEveryFunkNamePastBlueDrum.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryFunkNamePastBlueDrum.yml rename to resources/fixtures/recorded/everyRange/clearEveryFunkNamePastBlueDrum.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryFunkNameSkipPastBlueDrum.yml b/resources/fixtures/recorded/everyRange/clearEveryFunkNameSkipPastBlueDrum.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryFunkNameSkipPastBlueDrum.yml rename to resources/fixtures/recorded/everyRange/clearEveryFunkNameSkipPastBlueDrum.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLineAirBetweenHarp.yml b/resources/fixtures/recorded/everyRange/clearEveryLineAirBetweenHarp.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLineAirBetweenHarp.yml rename to resources/fixtures/recorded/everyRange/clearEveryLineAirBetweenHarp.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLineAirPastDrum.yml b/resources/fixtures/recorded/everyRange/clearEveryLineAirPastDrum.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLineAirPastDrum.yml rename to resources/fixtures/recorded/everyRange/clearEveryLineAirPastDrum.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLineAirUntilFine.yml b/resources/fixtures/recorded/everyRange/clearEveryLineAirUntilFine.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLineAirUntilFine.yml rename to resources/fixtures/recorded/everyRange/clearEveryLineAirUntilFine.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLineBlockBatPastFine.yml b/resources/fixtures/recorded/everyRange/clearEveryLineBlockBatPastFine.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLineBlockBatPastFine.yml rename to resources/fixtures/recorded/everyRange/clearEveryLineBlockBatPastFine.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLineEveryFunkAirPastBat.yml b/resources/fixtures/recorded/everyRange/clearEveryLineEveryFunkAirPastBat.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLineEveryFunkAirPastBat.yml rename to resources/fixtures/recorded/everyRange/clearEveryLineEveryFunkAirPastBat.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLineFunkBlueAirAndCapPastBlueEach.yml b/resources/fixtures/recorded/everyRange/clearEveryLineFunkBlueAirAndCapPastBlueEach.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLineFunkBlueAirAndCapPastBlueEach.yml rename to resources/fixtures/recorded/everyRange/clearEveryLineFunkBlueAirAndCapPastBlueEach.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLinePastBlockFine.yml b/resources/fixtures/recorded/everyRange/clearEveryLinePastBlockFine.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLinePastBlockFine.yml rename to resources/fixtures/recorded/everyRange/clearEveryLinePastBlockFine.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLinePastDrum.yml b/resources/fixtures/recorded/everyRange/clearEveryLinePastDrum.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLinePastDrum.yml rename to resources/fixtures/recorded/everyRange/clearEveryLinePastDrum.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLinePastEach.yml b/resources/fixtures/recorded/everyRange/clearEveryLinePastEach.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLinePastEach.yml rename to resources/fixtures/recorded/everyRange/clearEveryLinePastEach.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLinePastNextFunk.yml b/resources/fixtures/recorded/everyRange/clearEveryLinePastNextFunk.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLinePastNextFunk.yml rename to resources/fixtures/recorded/everyRange/clearEveryLinePastNextFunk.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryLineUntilFunkNamePit.yml b/resources/fixtures/recorded/everyRange/clearEveryLineUntilFunkNamePit.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryLineUntilFunkNamePit.yml rename to resources/fixtures/recorded/everyRange/clearEveryLineUntilFunkNamePit.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryStatePastFine.yml b/resources/fixtures/recorded/everyRange/clearEveryStatePastFine.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryStatePastFine.yml rename to resources/fixtures/recorded/everyRange/clearEveryStatePastFine.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenAirUntilLine.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenAirUntilLine.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenAirUntilLine.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenAirUntilLine.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenAirUntilPoint.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenAirUntilPoint.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenAirUntilPoint.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenAirUntilPoint.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenBatAndFinePastGust.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenBatAndFinePastGust.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenBatAndFinePastGust.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenBatAndFinePastGust.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenBatBetweenEach.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenBatBetweenEach.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenBatBetweenEach.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenBatBetweenEach.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenBatPastDrum.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenBatPastDrum.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenBatPastDrum.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenBatPastDrum.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenBatSkipPastEach.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenBatSkipPastEach.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenBatSkipPastEach.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenBatSkipPastEach.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenBatUntilEach.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenBatUntilEach.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenBatUntilEach.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenBatUntilEach.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenLineBatBetweenLook.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenLineBatBetweenLook.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenLineBatBetweenLook.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenLineBatBetweenLook.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenPastCap.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenPastCap.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenPastCap.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenPastCap.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenPastDownTwo.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenPastDownTwo.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenPastDownTwo.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenPastDownTwo.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenPastDrum.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenPastDrum.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenPastDrum.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenPastDrum.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenPastFunkNameEach.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenPastFunkNameEach.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenPastFunkNameEach.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenPastFunkNameEach.yml diff --git a/data/fixtures/recorded/everyRange/clearEveryTokenUntilFunkNameFine.yml b/resources/fixtures/recorded/everyRange/clearEveryTokenUntilFunkNameFine.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearEveryTokenUntilFunkNameFine.yml rename to resources/fixtures/recorded/everyRange/clearEveryTokenUntilFunkNameFine.yml diff --git a/data/fixtures/recorded/everyRange/clearSecondTokenEveryLineCapPastBlueFine.yml b/resources/fixtures/recorded/everyRange/clearSecondTokenEveryLineCapPastBlueFine.yml similarity index 100% rename from data/fixtures/recorded/everyRange/clearSecondTokenEveryLineCapPastBlueFine.yml rename to resources/fixtures/recorded/everyRange/clearSecondTokenEveryLineCapPastBlueFine.yml diff --git a/data/fixtures/recorded/everyRange/postEveryTokenFunkNameSkipPastToken.yml b/resources/fixtures/recorded/everyRange/postEveryTokenFunkNameSkipPastToken.yml similarity index 100% rename from data/fixtures/recorded/everyRange/postEveryTokenFunkNameSkipPastToken.yml rename to resources/fixtures/recorded/everyRange/postEveryTokenFunkNameSkipPastToken.yml diff --git a/data/fixtures/recorded/everyRange/preEveryTokenPastBat.yml b/resources/fixtures/recorded/everyRange/preEveryTokenPastBat.yml similarity index 100% rename from data/fixtures/recorded/everyRange/preEveryTokenPastBat.yml rename to resources/fixtures/recorded/everyRange/preEveryTokenPastBat.yml diff --git a/data/fixtures/recorded/everyRange/preEveryTokenThisPastBat.yml b/resources/fixtures/recorded/everyRange/preEveryTokenThisPastBat.yml similarity index 100% rename from data/fixtures/recorded/everyRange/preEveryTokenThisPastBat.yml rename to resources/fixtures/recorded/everyRange/preEveryTokenThisPastBat.yml diff --git a/data/fixtures/recorded/everyRange/preEveryTokenUntilFunkName.yml b/resources/fixtures/recorded/everyRange/preEveryTokenUntilFunkName.yml similarity index 100% rename from data/fixtures/recorded/everyRange/preEveryTokenUntilFunkName.yml rename to resources/fixtures/recorded/everyRange/preEveryTokenUntilFunkName.yml diff --git a/data/fixtures/recorded/everyScope/changeEveryLine.yml b/resources/fixtures/recorded/everyScope/changeEveryLine.yml similarity index 100% rename from data/fixtures/recorded/everyScope/changeEveryLine.yml rename to resources/fixtures/recorded/everyScope/changeEveryLine.yml diff --git a/data/fixtures/recorded/everyScope/changeEveryTokenInside.yml b/resources/fixtures/recorded/everyScope/changeEveryTokenInside.yml similarity index 100% rename from data/fixtures/recorded/everyScope/changeEveryTokenInside.yml rename to resources/fixtures/recorded/everyScope/changeEveryTokenInside.yml diff --git a/data/fixtures/recorded/everyScope/changeLastTokenInside.yml b/resources/fixtures/recorded/everyScope/changeLastTokenInside.yml similarity index 100% rename from data/fixtures/recorded/everyScope/changeLastTokenInside.yml rename to resources/fixtures/recorded/everyScope/changeLastTokenInside.yml diff --git a/data/fixtures/recorded/everyScope/clearEveryCall.yml b/resources/fixtures/recorded/everyScope/clearEveryCall.yml similarity index 100% rename from data/fixtures/recorded/everyScope/clearEveryCall.yml rename to resources/fixtures/recorded/everyScope/clearEveryCall.yml diff --git a/data/fixtures/recorded/everyScope/clearEveryCall2.yml b/resources/fixtures/recorded/everyScope/clearEveryCall2.yml similarity index 100% rename from data/fixtures/recorded/everyScope/clearEveryCall2.yml rename to resources/fixtures/recorded/everyScope/clearEveryCall2.yml diff --git a/data/fixtures/recorded/everyScope/clearEveryCall3.yml b/resources/fixtures/recorded/everyScope/clearEveryCall3.yml similarity index 100% rename from data/fixtures/recorded/everyScope/clearEveryCall3.yml rename to resources/fixtures/recorded/everyScope/clearEveryCall3.yml diff --git a/data/fixtures/recorded/everyScope/clearEveryFunkCoreFunk.yml b/resources/fixtures/recorded/everyScope/clearEveryFunkCoreFunk.yml similarity index 100% rename from data/fixtures/recorded/everyScope/clearEveryFunkCoreFunk.yml rename to resources/fixtures/recorded/everyScope/clearEveryFunkCoreFunk.yml diff --git a/data/fixtures/recorded/everyScope/clearEveryFunkName.yml b/resources/fixtures/recorded/everyScope/clearEveryFunkName.yml similarity index 100% rename from data/fixtures/recorded/everyScope/clearEveryFunkName.yml rename to resources/fixtures/recorded/everyScope/clearEveryFunkName.yml diff --git a/data/fixtures/recorded/everyScope/clearEveryState.yml b/resources/fixtures/recorded/everyScope/clearEveryState.yml similarity index 100% rename from data/fixtures/recorded/everyScope/clearEveryState.yml rename to resources/fixtures/recorded/everyScope/clearEveryState.yml diff --git a/data/fixtures/recorded/everyScope/takeEveryToken.yml b/resources/fixtures/recorded/everyScope/takeEveryToken.yml similarity index 100% rename from data/fixtures/recorded/everyScope/takeEveryToken.yml rename to resources/fixtures/recorded/everyScope/takeEveryToken.yml diff --git a/data/fixtures/recorded/fallback/bringFine.yml b/resources/fixtures/recorded/fallback/bringFine.yml similarity index 100% rename from data/fixtures/recorded/fallback/bringFine.yml rename to resources/fixtures/recorded/fallback/bringFine.yml diff --git a/data/fixtures/recorded/fallback/bringFine2.yml b/resources/fixtures/recorded/fallback/bringFine2.yml similarity index 100% rename from data/fixtures/recorded/fallback/bringFine2.yml rename to resources/fixtures/recorded/fallback/bringFine2.yml diff --git a/data/fixtures/recorded/fallback/chuckFine.yml b/resources/fixtures/recorded/fallback/chuckFine.yml similarity index 100% rename from data/fixtures/recorded/fallback/chuckFine.yml rename to resources/fixtures/recorded/fallback/chuckFine.yml diff --git a/data/fixtures/recorded/fallback/chuckFine2.yml b/resources/fixtures/recorded/fallback/chuckFine2.yml similarity index 100% rename from data/fixtures/recorded/fallback/chuckFine2.yml rename to resources/fixtures/recorded/fallback/chuckFine2.yml diff --git a/data/fixtures/recorded/fallback/moveFine.yml b/resources/fixtures/recorded/fallback/moveFine.yml similarity index 100% rename from data/fixtures/recorded/fallback/moveFine.yml rename to resources/fixtures/recorded/fallback/moveFine.yml diff --git a/data/fixtures/recorded/fallback/takeThis.yml b/resources/fixtures/recorded/fallback/takeThis.yml similarity index 100% rename from data/fixtures/recorded/fallback/takeThis.yml rename to resources/fixtures/recorded/fallback/takeThis.yml diff --git a/data/fixtures/recorded/fallback/takeToken.yml b/resources/fixtures/recorded/fallback/takeToken.yml similarity index 100% rename from data/fixtures/recorded/fallback/takeToken.yml rename to resources/fixtures/recorded/fallback/takeToken.yml diff --git a/data/fixtures/recorded/fallback/takeToken2.yml b/resources/fixtures/recorded/fallback/takeToken2.yml similarity index 100% rename from data/fixtures/recorded/fallback/takeToken2.yml rename to resources/fixtures/recorded/fallback/takeToken2.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringAirToThirdCarWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringAirToThirdCarWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringAirToThirdCarWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringAirToThirdCarWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringCommaToEndOfPointTakePoint.yml b/resources/fixtures/recorded/hatTokenMap/bringCommaToEndOfPointTakePoint.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringCommaToEndOfPointTakePoint.yml rename to resources/fixtures/recorded/hatTokenMap/bringCommaToEndOfPointTakePoint.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringCommaToStartOfPointTakePoint.yml b/resources/fixtures/recorded/hatTokenMap/bringCommaToStartOfPointTakePoint.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringCommaToStartOfPointTakePoint.yml rename to resources/fixtures/recorded/hatTokenMap/bringCommaToStartOfPointTakePoint.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpAfterWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpAfterWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpAfterWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpAfterWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpAndPointToEndOfThisAndEndOfWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpAndPointToEndOfThisAndEndOfWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpAndPointToEndOfThisAndEndOfWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpAndPointToEndOfThisAndEndOfWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpAndPointToJustThisAndStartOfWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpAndPointToJustThisAndStartOfWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpAndPointToJustThisAndStartOfWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpAndPointToJustThisAndStartOfWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpBeforeWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpBeforeWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpBeforeWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpBeforeWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpToEndOfPointTakePoint.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpToEndOfPointTakePoint.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpToEndOfPointTakePoint.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpToEndOfPointTakePoint.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpToStartOfPointTakePoint.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpToStartOfPointTakePoint.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpToStartOfPointTakePoint.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpToStartOfPointTakePoint.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringHarpToStartOfWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringHarpToStartOfWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringHarpToStartOfWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringHarpToStartOfWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointAfterFirstCarWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointAfterFirstCarWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointAfterFirstCarWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointAfterFirstCarWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfThisAndEndOfWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfThisAndEndOfWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfThisAndEndOfWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToEndOfThisAndEndOfWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointAndHarpToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointAndHarpToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointAndHarpToThisAndStartOfWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToThisAndStartOfWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointAndHarpToThisAndStartOfWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointAndHarpToThisAndStartOfWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointAndPointToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointAndPointToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointAndPointToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointAndPointToEndOfSecondCarWhaleAndEndOfJustWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointAndPointToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointAndPointToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointAndPointToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointAndPointToStartOfSecondCarWhaleAndStartOfJustWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointToEndOfWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointToEndOfWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointToEndOfWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointToEndOfWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointToStartOfWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointToStartOfWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointToStartOfWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointToStartOfWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/bringPointToThirdCarWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/bringPointToThirdCarWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/bringPointToThirdCarWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/bringPointToThirdCarWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/chuckFirstTwoCarWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/chuckFirstTwoCarWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/chuckFirstTwoCarWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/chuckFirstTwoCarWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/chuckFourthCarWhalePastThirdCarAirTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/chuckFourthCarWhalePastThirdCarAirTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/chuckFourthCarWhalePastThirdCarAirTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/chuckFourthCarWhalePastThirdCarAirTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/chuckHarpPastAirTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/chuckHarpPastAirTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/chuckHarpPastAirTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/chuckHarpPastAirTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/chuckLastTwoCarWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/chuckLastTwoCarWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/chuckLastTwoCarWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/chuckLastTwoCarWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/chuckSecondPastThirdCarWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/chuckSecondPastThirdCarWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/chuckSecondPastThirdCarWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/chuckSecondPastThirdCarWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/chuckThirdCarHarpPastSecondCarWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/chuckThirdCarHarpPastSecondCarWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/chuckThirdCarHarpPastSecondCarWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/chuckThirdCarHarpPastSecondCarWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/clearBlueSpecial.yml b/resources/fixtures/recorded/hatTokenMap/clearBlueSpecial.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/clearBlueSpecial.yml rename to resources/fixtures/recorded/hatTokenMap/clearBlueSpecial.yml diff --git a/data/fixtures/recorded/hatTokenMap/clearNear.yml b/resources/fixtures/recorded/hatTokenMap/clearNear.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/clearNear.yml rename to resources/fixtures/recorded/hatTokenMap/clearNear.yml diff --git a/data/fixtures/recorded/hatTokenMap/clearNear2.yml b/resources/fixtures/recorded/hatTokenMap/clearNear2.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/clearNear2.yml rename to resources/fixtures/recorded/hatTokenMap/clearNear2.yml diff --git a/data/fixtures/recorded/hatTokenMap/clearNear3.yml b/resources/fixtures/recorded/hatTokenMap/clearNear3.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/clearNear3.yml rename to resources/fixtures/recorded/hatTokenMap/clearNear3.yml diff --git a/data/fixtures/recorded/hatTokenMap/clearSpecial.yml b/resources/fixtures/recorded/hatTokenMap/clearSpecial.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/clearSpecial.yml rename to resources/fixtures/recorded/hatTokenMap/clearSpecial.yml diff --git a/data/fixtures/recorded/hatTokenMap/config.json b/resources/fixtures/recorded/hatTokenMap/config.json similarity index 100% rename from data/fixtures/recorded/hatTokenMap/config.json rename to resources/fixtures/recorded/hatTokenMap/config.json diff --git a/data/fixtures/recorded/hatTokenMap/moveFourthCarHarpPastSecondCarWhaleToEndOfJustWhaleTakeWhale.yml b/resources/fixtures/recorded/hatTokenMap/moveFourthCarHarpPastSecondCarWhaleToEndOfJustWhaleTakeWhale.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/moveFourthCarHarpPastSecondCarWhaleToEndOfJustWhaleTakeWhale.yml rename to resources/fixtures/recorded/hatTokenMap/moveFourthCarHarpPastSecondCarWhaleToEndOfJustWhaleTakeWhale.yml diff --git a/data/fixtures/recorded/hatTokenMap/sendEmoji.yml b/resources/fixtures/recorded/hatTokenMap/sendEmoji.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/sendEmoji.yml rename to resources/fixtures/recorded/hatTokenMap/sendEmoji.yml diff --git a/data/fixtures/recorded/hatTokenMap/takeEach.yml b/resources/fixtures/recorded/hatTokenMap/takeEach.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/takeEach.yml rename to resources/fixtures/recorded/hatTokenMap/takeEach.yml diff --git a/data/fixtures/recorded/hatTokenMap/takeHarp.yml b/resources/fixtures/recorded/hatTokenMap/takeHarp.yml similarity index 100% rename from data/fixtures/recorded/hatTokenMap/takeHarp.yml rename to resources/fixtures/recorded/hatTokenMap/takeHarp.yml diff --git a/data/fixtures/recorded/headTail/changeHead.yml b/resources/fixtures/recorded/headTail/changeHead.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeHead.yml rename to resources/fixtures/recorded/headTail/changeHead.yml diff --git a/data/fixtures/recorded/headTail/changeHead2.yml b/resources/fixtures/recorded/headTail/changeHead2.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeHead2.yml rename to resources/fixtures/recorded/headTail/changeHead2.yml diff --git a/data/fixtures/recorded/headTail/changeHead3.yml b/resources/fixtures/recorded/headTail/changeHead3.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeHead3.yml rename to resources/fixtures/recorded/headTail/changeHead3.yml diff --git a/data/fixtures/recorded/headTail/changeInsideTailCurly.yml b/resources/fixtures/recorded/headTail/changeInsideTailCurly.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeInsideTailCurly.yml rename to resources/fixtures/recorded/headTail/changeInsideTailCurly.yml diff --git a/data/fixtures/recorded/headTail/changeTail.yml b/resources/fixtures/recorded/headTail/changeTail.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeTail.yml rename to resources/fixtures/recorded/headTail/changeTail.yml diff --git a/data/fixtures/recorded/headTail/changeTail2.yml b/resources/fixtures/recorded/headTail/changeTail2.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeTail2.yml rename to resources/fixtures/recorded/headTail/changeTail2.yml diff --git a/data/fixtures/recorded/headTail/changeTail3.yml b/resources/fixtures/recorded/headTail/changeTail3.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeTail3.yml rename to resources/fixtures/recorded/headTail/changeTail3.yml diff --git a/data/fixtures/recorded/headTail/changeTail4.yml b/resources/fixtures/recorded/headTail/changeTail4.yml similarity index 100% rename from data/fixtures/recorded/headTail/changeTail4.yml rename to resources/fixtures/recorded/headTail/changeTail4.yml diff --git a/data/fixtures/recorded/headTail/chuckHeadAir.yml b/resources/fixtures/recorded/headTail/chuckHeadAir.yml similarity index 100% rename from data/fixtures/recorded/headTail/chuckHeadAir.yml rename to resources/fixtures/recorded/headTail/chuckHeadAir.yml diff --git a/data/fixtures/recorded/headTail/chuckHeadWhale.yml b/resources/fixtures/recorded/headTail/chuckHeadWhale.yml similarity index 100% rename from data/fixtures/recorded/headTail/chuckHeadWhale.yml rename to resources/fixtures/recorded/headTail/chuckHeadWhale.yml diff --git a/data/fixtures/recorded/headTail/chuckTailHarp.yml b/resources/fixtures/recorded/headTail/chuckTailHarp.yml similarity index 100% rename from data/fixtures/recorded/headTail/chuckTailHarp.yml rename to resources/fixtures/recorded/headTail/chuckTailHarp.yml diff --git a/data/fixtures/recorded/headTail/chuckTailWhale.yml b/resources/fixtures/recorded/headTail/chuckTailWhale.yml similarity index 100% rename from data/fixtures/recorded/headTail/chuckTailWhale.yml rename to resources/fixtures/recorded/headTail/chuckTailWhale.yml diff --git a/data/fixtures/recorded/headTail/clearHeadAir.yml b/resources/fixtures/recorded/headTail/clearHeadAir.yml similarity index 100% rename from data/fixtures/recorded/headTail/clearHeadAir.yml rename to resources/fixtures/recorded/headTail/clearHeadAir.yml diff --git a/data/fixtures/recorded/headTail/clearHeadLine.yml b/resources/fixtures/recorded/headTail/clearHeadLine.yml similarity index 100% rename from data/fixtures/recorded/headTail/clearHeadLine.yml rename to resources/fixtures/recorded/headTail/clearHeadLine.yml diff --git a/data/fixtures/recorded/headTail/clearTailHarp.yml b/resources/fixtures/recorded/headTail/clearTailHarp.yml similarity index 100% rename from data/fixtures/recorded/headTail/clearTailHarp.yml rename to resources/fixtures/recorded/headTail/clearTailHarp.yml diff --git a/data/fixtures/recorded/headTail/clearTailLine.yml b/resources/fixtures/recorded/headTail/clearTailLine.yml similarity index 100% rename from data/fixtures/recorded/headTail/clearTailLine.yml rename to resources/fixtures/recorded/headTail/clearTailLine.yml diff --git a/data/fixtures/recorded/headTail/takeHead.yml b/resources/fixtures/recorded/headTail/takeHead.yml similarity index 100% rename from data/fixtures/recorded/headTail/takeHead.yml rename to resources/fixtures/recorded/headTail/takeHead.yml diff --git a/data/fixtures/recorded/headTail/takeHeadVest.yml b/resources/fixtures/recorded/headTail/takeHeadVest.yml similarity index 100% rename from data/fixtures/recorded/headTail/takeHeadVest.yml rename to resources/fixtures/recorded/headTail/takeHeadVest.yml diff --git a/data/fixtures/recorded/headTail/takeTail.yml b/resources/fixtures/recorded/headTail/takeTail.yml similarity index 100% rename from data/fixtures/recorded/headTail/takeTail.yml rename to resources/fixtures/recorded/headTail/takeTail.yml diff --git a/data/fixtures/recorded/headTail/takeTailVest.yml b/resources/fixtures/recorded/headTail/takeTailVest.yml similarity index 100% rename from data/fixtures/recorded/headTail/takeTailVest.yml rename to resources/fixtures/recorded/headTail/takeTailVest.yml diff --git a/data/fixtures/recorded/implicitExpansion/bringAirToEndOfThis.yml b/resources/fixtures/recorded/implicitExpansion/bringAirToEndOfThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/bringAirToEndOfThis.yml rename to resources/fixtures/recorded/implicitExpansion/bringAirToEndOfThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/bringFineAfterThis.yml b/resources/fixtures/recorded/implicitExpansion/bringFineAfterThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/bringFineAfterThis.yml rename to resources/fixtures/recorded/implicitExpansion/bringFineAfterThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/bringHarp.yml b/resources/fixtures/recorded/implicitExpansion/bringHarp.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/bringHarp.yml rename to resources/fixtures/recorded/implicitExpansion/bringHarp.yml diff --git a/data/fixtures/recorded/implicitExpansion/bringHarpToThis.yml b/resources/fixtures/recorded/implicitExpansion/bringHarpToThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/bringHarpToThis.yml rename to resources/fixtures/recorded/implicitExpansion/bringHarpToThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/bringThisToWhale.yml b/resources/fixtures/recorded/implicitExpansion/bringThisToWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/bringThisToWhale.yml rename to resources/fixtures/recorded/implicitExpansion/bringThisToWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/bringWhaleBeforeThis.yml b/resources/fixtures/recorded/implicitExpansion/bringWhaleBeforeThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/bringWhaleBeforeThis.yml rename to resources/fixtures/recorded/implicitExpansion/bringWhaleBeforeThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/chuckBoundingThat.yml b/resources/fixtures/recorded/implicitExpansion/chuckBoundingThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/chuckBoundingThat.yml rename to resources/fixtures/recorded/implicitExpansion/chuckBoundingThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/chuckCoreThat.yml b/resources/fixtures/recorded/implicitExpansion/chuckCoreThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/chuckCoreThat.yml rename to resources/fixtures/recorded/implicitExpansion/chuckCoreThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/chuckLeadingThat.yml b/resources/fixtures/recorded/implicitExpansion/chuckLeadingThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/chuckLeadingThat.yml rename to resources/fixtures/recorded/implicitExpansion/chuckLeadingThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/chuckSecondWordThat.yml b/resources/fixtures/recorded/implicitExpansion/chuckSecondWordThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/chuckSecondWordThat.yml rename to resources/fixtures/recorded/implicitExpansion/chuckSecondWordThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearBoundingThat.yml b/resources/fixtures/recorded/implicitExpansion/clearBoundingThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearBoundingThat.yml rename to resources/fixtures/recorded/implicitExpansion/clearBoundingThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearBounds.yml b/resources/fixtures/recorded/implicitExpansion/clearBounds.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearBounds.yml rename to resources/fixtures/recorded/implicitExpansion/clearBounds.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearBounds2.yml b/resources/fixtures/recorded/implicitExpansion/clearBounds2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearBounds2.yml rename to resources/fixtures/recorded/implicitExpansion/clearBounds2.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearBoundsAir.yml b/resources/fixtures/recorded/implicitExpansion/clearBoundsAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearBoundsAir.yml rename to resources/fixtures/recorded/implicitExpansion/clearBoundsAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearBoundsToken.yml b/resources/fixtures/recorded/implicitExpansion/clearBoundsToken.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearBoundsToken.yml rename to resources/fixtures/recorded/implicitExpansion/clearBoundsToken.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearCore.yml b/resources/fixtures/recorded/implicitExpansion/clearCore.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearCore.yml rename to resources/fixtures/recorded/implicitExpansion/clearCore.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearCore2.yml b/resources/fixtures/recorded/implicitExpansion/clearCore2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearCore2.yml rename to resources/fixtures/recorded/implicitExpansion/clearCore2.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearCoreAir.yml b/resources/fixtures/recorded/implicitExpansion/clearCoreAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearCoreAir.yml rename to resources/fixtures/recorded/implicitExpansion/clearCoreAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearCoreThat.yml b/resources/fixtures/recorded/implicitExpansion/clearCoreThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearCoreThat.yml rename to resources/fixtures/recorded/implicitExpansion/clearCoreThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearCoreToken.yml b/resources/fixtures/recorded/implicitExpansion/clearCoreToken.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearCoreToken.yml rename to resources/fixtures/recorded/implicitExpansion/clearCoreToken.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryItem.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryItem.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryItem.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryItem.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryItem2.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryItem2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryItem2.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryItem2.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryItemAir.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryItemAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryItemAir.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryItemAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryLine.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryLine.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryLine.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryLine.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryLine2.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryLine2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryLine2.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryLine2.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryLineAir.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryLineAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryLineAir.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryLineAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryLineFunk.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryLineFunk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryLineFunk.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryLineFunk.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryLineThat.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryLineThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryLineThat.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryLineThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearEveryLineThat2.yml b/resources/fixtures/recorded/implicitExpansion/clearEveryLineThat2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearEveryLineThat2.yml rename to resources/fixtures/recorded/implicitExpansion/clearEveryLineThat2.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearFirstCarSecondWordHarp.yml b/resources/fixtures/recorded/implicitExpansion/clearFirstCarSecondWordHarp.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearFirstCarSecondWordHarp.yml rename to resources/fixtures/recorded/implicitExpansion/clearFirstCarSecondWordHarp.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearFirstWordPastTrap.yml b/resources/fixtures/recorded/implicitExpansion/clearFirstWordPastTrap.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearFirstWordPastTrap.yml rename to resources/fixtures/recorded/implicitExpansion/clearFirstWordPastTrap.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearFirstWordThat.yml b/resources/fixtures/recorded/implicitExpansion/clearFirstWordThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearFirstWordThat.yml rename to resources/fixtures/recorded/implicitExpansion/clearFirstWordThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearLeadingPastWhale.yml b/resources/fixtures/recorded/implicitExpansion/clearLeadingPastWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearLeadingPastWhale.yml rename to resources/fixtures/recorded/implicitExpansion/clearLeadingPastWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearLeadingSecondWord.yml b/resources/fixtures/recorded/implicitExpansion/clearLeadingSecondWord.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearLeadingSecondWord.yml rename to resources/fixtures/recorded/implicitExpansion/clearLeadingSecondWord.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearPastTrap.yml b/resources/fixtures/recorded/implicitExpansion/clearPastTrap.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearPastTrap.yml rename to resources/fixtures/recorded/implicitExpansion/clearPastTrap.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearSecondWord.yml b/resources/fixtures/recorded/implicitExpansion/clearSecondWord.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearSecondWord.yml rename to resources/fixtures/recorded/implicitExpansion/clearSecondWord.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearSecondWord2.yml b/resources/fixtures/recorded/implicitExpansion/clearSecondWord2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearSecondWord2.yml rename to resources/fixtures/recorded/implicitExpansion/clearSecondWord2.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearSecondWordAir.yml b/resources/fixtures/recorded/implicitExpansion/clearSecondWordAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearSecondWordAir.yml rename to resources/fixtures/recorded/implicitExpansion/clearSecondWordAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearThisSliceBat.yml b/resources/fixtures/recorded/implicitExpansion/clearThisSliceBat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearThisSliceBat.yml rename to resources/fixtures/recorded/implicitExpansion/clearThisSliceBat.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearTrailing.yml b/resources/fixtures/recorded/implicitExpansion/clearTrailing.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearTrailing.yml rename to resources/fixtures/recorded/implicitExpansion/clearTrailing.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearTrailing2.yml b/resources/fixtures/recorded/implicitExpansion/clearTrailing2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearTrailing2.yml rename to resources/fixtures/recorded/implicitExpansion/clearTrailing2.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearTrailingAir.yml b/resources/fixtures/recorded/implicitExpansion/clearTrailingAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearTrailingAir.yml rename to resources/fixtures/recorded/implicitExpansion/clearTrailingAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearTrailingLine.yml b/resources/fixtures/recorded/implicitExpansion/clearTrailingLine.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearTrailingLine.yml rename to resources/fixtures/recorded/implicitExpansion/clearTrailingLine.yml diff --git a/data/fixtures/recorded/implicitExpansion/clearTrailingThat.yml b/resources/fixtures/recorded/implicitExpansion/clearTrailingThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clearTrailingThat.yml rename to resources/fixtures/recorded/implicitExpansion/clearTrailingThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/cloneAir.yml b/resources/fixtures/recorded/implicitExpansion/cloneAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/cloneAir.yml rename to resources/fixtures/recorded/implicitExpansion/cloneAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/cloneFunk.yml b/resources/fixtures/recorded/implicitExpansion/cloneFunk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/cloneFunk.yml rename to resources/fixtures/recorded/implicitExpansion/cloneFunk.yml diff --git a/data/fixtures/recorded/implicitExpansion/cloneNearPastWhale.yml b/resources/fixtures/recorded/implicitExpansion/cloneNearPastWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/cloneNearPastWhale.yml rename to resources/fixtures/recorded/implicitExpansion/cloneNearPastWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/clonePastWhale.yml b/resources/fixtures/recorded/implicitExpansion/clonePastWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/clonePastWhale.yml rename to resources/fixtures/recorded/implicitExpansion/clonePastWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/cloneThat.yml b/resources/fixtures/recorded/implicitExpansion/cloneThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/cloneThat.yml rename to resources/fixtures/recorded/implicitExpansion/cloneThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/cloneThat2.yml b/resources/fixtures/recorded/implicitExpansion/cloneThat2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/cloneThat2.yml rename to resources/fixtures/recorded/implicitExpansion/cloneThat2.yml diff --git a/data/fixtures/recorded/implicitExpansion/cloneThis.yml b/resources/fixtures/recorded/implicitExpansion/cloneThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/cloneThis.yml rename to resources/fixtures/recorded/implicitExpansion/cloneThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/cloneThis2.yml b/resources/fixtures/recorded/implicitExpansion/cloneThis2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/cloneThis2.yml rename to resources/fixtures/recorded/implicitExpansion/cloneThis2.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapPastInk.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapPastInk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapPastInk.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapPastInk.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapThat.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapThat.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapThat2.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapThat2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapThat2.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapThat2.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapThis.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapThis.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapThis2.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapThis2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapThis2.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapThis2.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapToken.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapToken.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapToken.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapToken.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapWhale.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapWhale.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/funkWrapWhalePastBat.yml b/resources/fixtures/recorded/implicitExpansion/funkWrapWhalePastBat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/funkWrapWhalePastBat.yml rename to resources/fixtures/recorded/implicitExpansion/funkWrapWhalePastBat.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourAir.yml b/resources/fixtures/recorded/implicitExpansion/pourAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourAir.yml rename to resources/fixtures/recorded/implicitExpansion/pourAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourFunk.yml b/resources/fixtures/recorded/implicitExpansion/pourFunk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourFunk.yml rename to resources/fixtures/recorded/implicitExpansion/pourFunk.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourNearPastWhale.yml b/resources/fixtures/recorded/implicitExpansion/pourNearPastWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourNearPastWhale.yml rename to resources/fixtures/recorded/implicitExpansion/pourNearPastWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourPastWhale.yml b/resources/fixtures/recorded/implicitExpansion/pourPastWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourPastWhale.yml rename to resources/fixtures/recorded/implicitExpansion/pourPastWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourThat.yml b/resources/fixtures/recorded/implicitExpansion/pourThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourThat.yml rename to resources/fixtures/recorded/implicitExpansion/pourThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourThat2.yml b/resources/fixtures/recorded/implicitExpansion/pourThat2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourThat2.yml rename to resources/fixtures/recorded/implicitExpansion/pourThat2.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourThis.yml b/resources/fixtures/recorded/implicitExpansion/pourThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourThis.yml rename to resources/fixtures/recorded/implicitExpansion/pourThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/pourThis2.yml b/resources/fixtures/recorded/implicitExpansion/pourThis2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/pourThis2.yml rename to resources/fixtures/recorded/implicitExpansion/pourThis2.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkAfterThat.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkAfterThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkAfterThat.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkAfterThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkAfterThat2.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkAfterThat2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkAfterThat2.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkAfterThat2.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkAfterThis.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkAfterThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkAfterThis.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkAfterThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkAfterThis2.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkAfterThis2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkAfterThis2.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkAfterThis2.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkAfterToken.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkAfterToken.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkAfterToken.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkAfterToken.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkAfterWhale.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkAfterWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkAfterWhale.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkAfterWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkToAirPastWhale.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkToAirPastWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkToAirPastWhale.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkToAirPastWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/snipFunkToThisPastEach.yml b/resources/fixtures/recorded/implicitExpansion/snipFunkToThisPastEach.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/snipFunkToThisPastEach.yml rename to resources/fixtures/recorded/implicitExpansion/snipFunkToThisPastEach.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchAir.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchAir.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchAir.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchAir.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchFunk.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchFunk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchFunk.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchFunk.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchLookPastTrap.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchLookPastTrap.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchLookPastTrap.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchLookPastTrap.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchPastWhale.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchPastWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchPastWhale.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchPastWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchThat.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchThat.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchThat.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchThat.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchThat2.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchThat2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchThat2.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchThat2.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchThis.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchThis.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchThis.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchThis.yml diff --git a/data/fixtures/recorded/implicitExpansion/squareSwitchThis2.yml b/resources/fixtures/recorded/implicitExpansion/squareSwitchThis2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/squareSwitchThis2.yml rename to resources/fixtures/recorded/implicitExpansion/squareSwitchThis2.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryBlock.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryBlock.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryBlock.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryBlock.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryBlock2.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryBlock2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryBlock2.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryBlock2.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryBlockFunkWhale.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryBlockFunkWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryBlockFunkWhale.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryBlockFunkWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryPaint.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryPaint.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryPaint.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryPaint.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryPaintBlockRisk.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryPaintBlockRisk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryPaintBlockRisk.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryPaintBlockRisk.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryPaintEach.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryPaintEach.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryPaintEach.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryPaintEach.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEverySmallPaint.yml b/resources/fixtures/recorded/implicitExpansion/takeEverySmallPaint.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEverySmallPaint.yml rename to resources/fixtures/recorded/implicitExpansion/takeEverySmallPaint.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEverySmallPaint2.yml b/resources/fixtures/recorded/implicitExpansion/takeEverySmallPaint2.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEverySmallPaint2.yml rename to resources/fixtures/recorded/implicitExpansion/takeEverySmallPaint2.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEverySmallPaintBlockRisk.yml b/resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintBlockRisk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEverySmallPaintBlockRisk.yml rename to resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintBlockRisk.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEverySmallPaintEach.yml b/resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintEach.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEverySmallPaintEach.yml rename to resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintEach.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEverySmallPaintToken.yml b/resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintToken.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEverySmallPaintToken.yml rename to resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintToken.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEverySmallPaintWhale.yml b/resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintWhale.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEverySmallPaintWhale.yml rename to resources/fixtures/recorded/implicitExpansion/takeEverySmallPaintWhale.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryToken.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryToken.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryToken.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryToken.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryTokenBlockRisk.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryTokenBlockRisk.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryTokenBlockRisk.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryTokenBlockRisk.yml diff --git a/data/fixtures/recorded/implicitExpansion/takeEveryTokenEach.yml b/resources/fixtures/recorded/implicitExpansion/takeEveryTokenEach.yml similarity index 100% rename from data/fixtures/recorded/implicitExpansion/takeEveryTokenEach.yml rename to resources/fixtures/recorded/implicitExpansion/takeEveryTokenEach.yml diff --git a/data/fixtures/recorded/inference/bringAirBeforeRound.yml b/resources/fixtures/recorded/inference/bringAirBeforeRound.yml similarity index 100% rename from data/fixtures/recorded/inference/bringAirBeforeRound.yml rename to resources/fixtures/recorded/inference/bringAirBeforeRound.yml diff --git a/data/fixtures/recorded/inference/bringAirToEndOfRowTwoAndRowThree.yml b/resources/fixtures/recorded/inference/bringAirToEndOfRowTwoAndRowThree.yml similarity index 100% rename from data/fixtures/recorded/inference/bringAirToEndOfRowTwoAndRowThree.yml rename to resources/fixtures/recorded/inference/bringAirToEndOfRowTwoAndRowThree.yml diff --git a/data/fixtures/recorded/inference/bringBattBeforeFunk.yml b/resources/fixtures/recorded/inference/bringBattBeforeFunk.yml similarity index 100% rename from data/fixtures/recorded/inference/bringBattBeforeFunk.yml rename to resources/fixtures/recorded/inference/bringBattBeforeFunk.yml diff --git a/data/fixtures/recorded/inference/bringBattBeforeItsFunk.yml b/resources/fixtures/recorded/inference/bringBattBeforeItsFunk.yml similarity index 100% rename from data/fixtures/recorded/inference/bringBattBeforeItsFunk.yml rename to resources/fixtures/recorded/inference/bringBattBeforeItsFunk.yml diff --git a/data/fixtures/recorded/inference/bringHarpAfterLineTrapAndBlockSpun.yml b/resources/fixtures/recorded/inference/bringHarpAfterLineTrapAndBlockSpun.yml similarity index 100% rename from data/fixtures/recorded/inference/bringHarpAfterLineTrapAndBlockSpun.yml rename to resources/fixtures/recorded/inference/bringHarpAfterLineTrapAndBlockSpun.yml diff --git a/data/fixtures/recorded/inference/bringLineBattPastEndOfItsFunkToThis.yml b/resources/fixtures/recorded/inference/bringLineBattPastEndOfItsFunkToThis.yml similarity index 100% rename from data/fixtures/recorded/inference/bringLineBattPastEndOfItsFunkToThis.yml rename to resources/fixtures/recorded/inference/bringLineBattPastEndOfItsFunkToThis.yml diff --git a/data/fixtures/recorded/inference/bringLineLookToJustAir.yml b/resources/fixtures/recorded/inference/bringLineLookToJustAir.yml similarity index 100% rename from data/fixtures/recorded/inference/bringLineLookToJustAir.yml rename to resources/fixtures/recorded/inference/bringLineLookToJustAir.yml diff --git a/data/fixtures/recorded/inference/bringMapAirToLineHarp.yml b/resources/fixtures/recorded/inference/bringMapAirToLineHarp.yml similarity index 100% rename from data/fixtures/recorded/inference/bringMapAirToLineHarp.yml rename to resources/fixtures/recorded/inference/bringMapAirToLineHarp.yml diff --git a/data/fixtures/recorded/inference/bringMapAirToTokenHarp.yml b/resources/fixtures/recorded/inference/bringMapAirToTokenHarp.yml similarity index 100% rename from data/fixtures/recorded/inference/bringMapAirToTokenHarp.yml rename to resources/fixtures/recorded/inference/bringMapAirToTokenHarp.yml diff --git a/data/fixtures/recorded/inference/bringOddToLine.yml b/resources/fixtures/recorded/inference/bringOddToLine.yml similarity index 100% rename from data/fixtures/recorded/inference/bringOddToLine.yml rename to resources/fixtures/recorded/inference/bringOddToLine.yml diff --git a/data/fixtures/recorded/inference/bringOddToState.yml b/resources/fixtures/recorded/inference/bringOddToState.yml similarity index 100% rename from data/fixtures/recorded/inference/bringOddToState.yml rename to resources/fixtures/recorded/inference/bringOddToState.yml diff --git a/data/fixtures/recorded/inference/bringOddToToken.yml b/resources/fixtures/recorded/inference/bringOddToToken.yml similarity index 100% rename from data/fixtures/recorded/inference/bringOddToToken.yml rename to resources/fixtures/recorded/inference/bringOddToToken.yml diff --git a/data/fixtures/recorded/inference/bringRowOneBeforeBatt.yml b/resources/fixtures/recorded/inference/bringRowOneBeforeBatt.yml similarity index 100% rename from data/fixtures/recorded/inference/bringRowOneBeforeBatt.yml rename to resources/fixtures/recorded/inference/bringRowOneBeforeBatt.yml diff --git a/data/fixtures/recorded/inference/bringRowOnePastTwoBeforeBatt.yml b/resources/fixtures/recorded/inference/bringRowOnePastTwoBeforeBatt.yml similarity index 100% rename from data/fixtures/recorded/inference/bringRowOnePastTwoBeforeBatt.yml rename to resources/fixtures/recorded/inference/bringRowOnePastTwoBeforeBatt.yml diff --git a/data/fixtures/recorded/inference/bringTokenHarpToMapAir.yml b/resources/fixtures/recorded/inference/bringTokenHarpToMapAir.yml similarity index 100% rename from data/fixtures/recorded/inference/bringTokenHarpToMapAir.yml rename to resources/fixtures/recorded/inference/bringTokenHarpToMapAir.yml diff --git a/data/fixtures/recorded/inference/clearAirPastEndOfItsLine.yml b/resources/fixtures/recorded/inference/clearAirPastEndOfItsLine.yml similarity index 100% rename from data/fixtures/recorded/inference/clearAirPastEndOfItsLine.yml rename to resources/fixtures/recorded/inference/clearAirPastEndOfItsLine.yml diff --git a/data/fixtures/recorded/inference/clearEachPastStartOfItsLine.yml b/resources/fixtures/recorded/inference/clearEachPastStartOfItsLine.yml similarity index 100% rename from data/fixtures/recorded/inference/clearEachPastStartOfItsLine.yml rename to resources/fixtures/recorded/inference/clearEachPastStartOfItsLine.yml diff --git a/data/fixtures/recorded/inference/clearNearPastEndOfItsState.yml b/resources/fixtures/recorded/inference/clearNearPastEndOfItsState.yml similarity index 100% rename from data/fixtures/recorded/inference/clearNearPastEndOfItsState.yml rename to resources/fixtures/recorded/inference/clearNearPastEndOfItsState.yml diff --git a/data/fixtures/recorded/inference/clearSecondCarLookPastEndOfItsToken.yml b/resources/fixtures/recorded/inference/clearSecondCarLookPastEndOfItsToken.yml similarity index 100% rename from data/fixtures/recorded/inference/clearSecondCarLookPastEndOfItsToken.yml rename to resources/fixtures/recorded/inference/clearSecondCarLookPastEndOfItsToken.yml diff --git a/data/fixtures/recorded/inference/clearThis.yml b/resources/fixtures/recorded/inference/clearThis.yml similarity index 100% rename from data/fixtures/recorded/inference/clearThis.yml rename to resources/fixtures/recorded/inference/clearThis.yml diff --git a/data/fixtures/recorded/inference/ifWrapTokenFine.yml b/resources/fixtures/recorded/inference/ifWrapTokenFine.yml similarity index 100% rename from data/fixtures/recorded/inference/ifWrapTokenFine.yml rename to resources/fixtures/recorded/inference/ifWrapTokenFine.yml diff --git a/data/fixtures/recorded/inference/takeFirstWord.yml b/resources/fixtures/recorded/inference/takeFirstWord.yml similarity index 100% rename from data/fixtures/recorded/inference/takeFirstWord.yml rename to resources/fixtures/recorded/inference/takeFirstWord.yml diff --git a/data/fixtures/recorded/inference/takeHarpAndStringEach.yml b/resources/fixtures/recorded/inference/takeHarpAndStringEach.yml similarity index 100% rename from data/fixtures/recorded/inference/takeHarpAndStringEach.yml rename to resources/fixtures/recorded/inference/takeHarpAndStringEach.yml diff --git a/data/fixtures/recorded/inference/takeHarpPastStringEach.yml b/resources/fixtures/recorded/inference/takeHarpPastStringEach.yml similarity index 100% rename from data/fixtures/recorded/inference/takeHarpPastStringEach.yml rename to resources/fixtures/recorded/inference/takeHarpPastStringEach.yml diff --git a/data/fixtures/recorded/inference/takeLastChar.yml b/resources/fixtures/recorded/inference/takeLastChar.yml similarity index 100% rename from data/fixtures/recorded/inference/takeLastChar.yml rename to resources/fixtures/recorded/inference/takeLastChar.yml diff --git a/data/fixtures/recorded/inference/takeLinePastAir.yml b/resources/fixtures/recorded/inference/takeLinePastAir.yml similarity index 100% rename from data/fixtures/recorded/inference/takeLinePastAir.yml rename to resources/fixtures/recorded/inference/takeLinePastAir.yml diff --git a/data/fixtures/recorded/inference/takeLineVestAndAir.yml b/resources/fixtures/recorded/inference/takeLineVestAndAir.yml similarity index 100% rename from data/fixtures/recorded/inference/takeLineVestAndAir.yml rename to resources/fixtures/recorded/inference/takeLineVestAndAir.yml diff --git a/data/fixtures/recorded/inference/takeLineVestPastAir.yml b/resources/fixtures/recorded/inference/takeLineVestPastAir.yml similarity index 100% rename from data/fixtures/recorded/inference/takeLineVestPastAir.yml rename to resources/fixtures/recorded/inference/takeLineVestPastAir.yml diff --git a/data/fixtures/recorded/inference/takeOddPastLine.yml b/resources/fixtures/recorded/inference/takeOddPastLine.yml similarity index 100% rename from data/fixtures/recorded/inference/takeOddPastLine.yml rename to resources/fixtures/recorded/inference/takeOddPastLine.yml diff --git a/data/fixtures/recorded/inference/takeOddPastState.yml b/resources/fixtures/recorded/inference/takeOddPastState.yml similarity index 100% rename from data/fixtures/recorded/inference/takeOddPastState.yml rename to resources/fixtures/recorded/inference/takeOddPastState.yml diff --git a/data/fixtures/recorded/inference/takeOddPastToken.yml b/resources/fixtures/recorded/inference/takeOddPastToken.yml similarity index 100% rename from data/fixtures/recorded/inference/takeOddPastToken.yml rename to resources/fixtures/recorded/inference/takeOddPastToken.yml diff --git a/data/fixtures/recorded/inference/takePastLineAir.yml b/resources/fixtures/recorded/inference/takePastLineAir.yml similarity index 100% rename from data/fixtures/recorded/inference/takePastLineAir.yml rename to resources/fixtures/recorded/inference/takePastLineAir.yml diff --git a/data/fixtures/recorded/inference/takeStringHarpAndEach.yml b/resources/fixtures/recorded/inference/takeStringHarpAndEach.yml similarity index 100% rename from data/fixtures/recorded/inference/takeStringHarpAndEach.yml rename to resources/fixtures/recorded/inference/takeStringHarpAndEach.yml diff --git a/data/fixtures/recorded/inference/takeStringHarpPastEach.yml b/resources/fixtures/recorded/inference/takeStringHarpPastEach.yml similarity index 100% rename from data/fixtures/recorded/inference/takeStringHarpPastEach.yml rename to resources/fixtures/recorded/inference/takeStringHarpPastEach.yml diff --git a/data/fixtures/recorded/inference/takeVestAndLineAir.yml b/resources/fixtures/recorded/inference/takeVestAndLineAir.yml similarity index 100% rename from data/fixtures/recorded/inference/takeVestAndLineAir.yml rename to resources/fixtures/recorded/inference/takeVestAndLineAir.yml diff --git a/data/fixtures/recorded/inference/takeVestPastLineAir.yml b/resources/fixtures/recorded/inference/takeVestPastLineAir.yml similarity index 100% rename from data/fixtures/recorded/inference/takeVestPastLineAir.yml rename to resources/fixtures/recorded/inference/takeVestPastLineAir.yml diff --git a/data/fixtures/recorded/instants/clearSecondLastInstanceAir.yml b/resources/fixtures/recorded/instants/clearSecondLastInstanceAir.yml similarity index 100% rename from data/fixtures/recorded/instants/clearSecondLastInstanceAir.yml rename to resources/fixtures/recorded/instants/clearSecondLastInstanceAir.yml diff --git a/data/fixtures/recorded/itemTextual/chuckEveryItem.yml b/resources/fixtures/recorded/itemTextual/chuckEveryItem.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/chuckEveryItem.yml rename to resources/fixtures/recorded/itemTextual/chuckEveryItem.yml diff --git a/data/fixtures/recorded/itemTextual/chuckItem.yml b/resources/fixtures/recorded/itemTextual/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/chuckItem.yml rename to resources/fixtures/recorded/itemTextual/chuckItem.yml diff --git a/data/fixtures/recorded/itemTextual/chuckItem2.yml b/resources/fixtures/recorded/itemTextual/chuckItem2.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/chuckItem2.yml rename to resources/fixtures/recorded/itemTextual/chuckItem2.yml diff --git a/data/fixtures/recorded/itemTextual/chuckItem3.yml b/resources/fixtures/recorded/itemTextual/chuckItem3.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/chuckItem3.yml rename to resources/fixtures/recorded/itemTextual/chuckItem3.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItem.yml b/resources/fixtures/recorded/itemTextual/clearEveryItem.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItem.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItem.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItem2.yml b/resources/fixtures/recorded/itemTextual/clearEveryItem2.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItem2.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItem2.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItem3.yml b/resources/fixtures/recorded/itemTextual/clearEveryItem3.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItem3.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItem3.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItem4.yml b/resources/fixtures/recorded/itemTextual/clearEveryItem4.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItem4.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItem4.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItem5.yml b/resources/fixtures/recorded/itemTextual/clearEveryItem5.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItem5.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItem5.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItem6.yml b/resources/fixtures/recorded/itemTextual/clearEveryItem6.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItem6.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItem6.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItem7.yml b/resources/fixtures/recorded/itemTextual/clearEveryItem7.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItem7.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItem7.yml diff --git a/data/fixtures/recorded/itemTextual/clearEveryItemBlock.yml b/resources/fixtures/recorded/itemTextual/clearEveryItemBlock.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearEveryItemBlock.yml rename to resources/fixtures/recorded/itemTextual/clearEveryItemBlock.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem.yml b/resources/fixtures/recorded/itemTextual/clearItem.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem.yml rename to resources/fixtures/recorded/itemTextual/clearItem.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem12.yml b/resources/fixtures/recorded/itemTextual/clearItem12.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem12.yml rename to resources/fixtures/recorded/itemTextual/clearItem12.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem15.yml b/resources/fixtures/recorded/itemTextual/clearItem15.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem15.yml rename to resources/fixtures/recorded/itemTextual/clearItem15.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem16.yml b/resources/fixtures/recorded/itemTextual/clearItem16.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem16.yml rename to resources/fixtures/recorded/itemTextual/clearItem16.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem17.yml b/resources/fixtures/recorded/itemTextual/clearItem17.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem17.yml rename to resources/fixtures/recorded/itemTextual/clearItem17.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem18.yml b/resources/fixtures/recorded/itemTextual/clearItem18.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem18.yml rename to resources/fixtures/recorded/itemTextual/clearItem18.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem19.yml b/resources/fixtures/recorded/itemTextual/clearItem19.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem19.yml rename to resources/fixtures/recorded/itemTextual/clearItem19.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem2.yml b/resources/fixtures/recorded/itemTextual/clearItem2.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem2.yml rename to resources/fixtures/recorded/itemTextual/clearItem2.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem20.yml b/resources/fixtures/recorded/itemTextual/clearItem20.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem20.yml rename to resources/fixtures/recorded/itemTextual/clearItem20.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem3.yml b/resources/fixtures/recorded/itemTextual/clearItem3.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem3.yml rename to resources/fixtures/recorded/itemTextual/clearItem3.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem4.yml b/resources/fixtures/recorded/itemTextual/clearItem4.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem4.yml rename to resources/fixtures/recorded/itemTextual/clearItem4.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem5.yml b/resources/fixtures/recorded/itemTextual/clearItem5.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem5.yml rename to resources/fixtures/recorded/itemTextual/clearItem5.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem7.yml b/resources/fixtures/recorded/itemTextual/clearItem7.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem7.yml rename to resources/fixtures/recorded/itemTextual/clearItem7.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem8.yml b/resources/fixtures/recorded/itemTextual/clearItem8.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem8.yml rename to resources/fixtures/recorded/itemTextual/clearItem8.yml diff --git a/data/fixtures/recorded/itemTextual/clearItem9.yml b/resources/fixtures/recorded/itemTextual/clearItem9.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/clearItem9.yml rename to resources/fixtures/recorded/itemTextual/clearItem9.yml diff --git a/data/fixtures/recorded/itemTextual/cloneTwoArgs.yml b/resources/fixtures/recorded/itemTextual/cloneTwoArgs.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/cloneTwoArgs.yml rename to resources/fixtures/recorded/itemTextual/cloneTwoArgs.yml diff --git a/data/fixtures/recorded/itemTextual/cloneTwoItems.yml b/resources/fixtures/recorded/itemTextual/cloneTwoItems.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/cloneTwoItems.yml rename to resources/fixtures/recorded/itemTextual/cloneTwoItems.yml diff --git a/data/fixtures/recorded/itemTextual/drinkItem.yml b/resources/fixtures/recorded/itemTextual/drinkItem.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/drinkItem.yml rename to resources/fixtures/recorded/itemTextual/drinkItem.yml diff --git a/data/fixtures/recorded/itemTextual/drinkItem2.yml b/resources/fixtures/recorded/itemTextual/drinkItem2.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/drinkItem2.yml rename to resources/fixtures/recorded/itemTextual/drinkItem2.yml diff --git a/data/fixtures/recorded/itemTextual/takeEveryItem.yml b/resources/fixtures/recorded/itemTextual/takeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/takeEveryItem.yml rename to resources/fixtures/recorded/itemTextual/takeEveryItem.yml diff --git a/data/fixtures/recorded/itemTextual/takeEveryItemAir.yml b/resources/fixtures/recorded/itemTextual/takeEveryItemAir.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/takeEveryItemAir.yml rename to resources/fixtures/recorded/itemTextual/takeEveryItemAir.yml diff --git a/data/fixtures/recorded/itemTextual/takeItemAir.yml b/resources/fixtures/recorded/itemTextual/takeItemAir.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/takeItemAir.yml rename to resources/fixtures/recorded/itemTextual/takeItemAir.yml diff --git a/data/fixtures/recorded/itemTextual/takeItemBlueRisk.yml b/resources/fixtures/recorded/itemTextual/takeItemBlueRisk.yml similarity index 100% rename from data/fixtures/recorded/itemTextual/takeItemBlueRisk.yml rename to resources/fixtures/recorded/itemTextual/takeItemBlueRisk.yml diff --git a/data/fixtures/recorded/languages/clojure/changeCallee.yml b/resources/fixtures/recorded/languages/clojure/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/changeCallee.yml rename to resources/fixtures/recorded/languages/clojure/changeCallee.yml diff --git a/data/fixtures/recorded/languages/clojure/changeCallee2.yml b/resources/fixtures/recorded/languages/clojure/changeCallee2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/changeCallee2.yml rename to resources/fixtures/recorded/languages/clojure/changeCallee2.yml diff --git a/data/fixtures/recorded/languages/clojure/changeCallee3.yml b/resources/fixtures/recorded/languages/clojure/changeCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/changeCallee3.yml rename to resources/fixtures/recorded/languages/clojure/changeCallee3.yml diff --git a/data/fixtures/recorded/languages/clojure/changeCallee4.yml b/resources/fixtures/recorded/languages/clojure/changeCallee4.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/changeCallee4.yml rename to resources/fixtures/recorded/languages/clojure/changeCallee4.yml diff --git a/data/fixtures/recorded/languages/clojure/chuckItemFine.yml b/resources/fixtures/recorded/languages/clojure/chuckItemFine.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/chuckItemFine.yml rename to resources/fixtures/recorded/languages/clojure/chuckItemFine.yml diff --git a/data/fixtures/recorded/languages/clojure/chuckItemFine2.yml b/resources/fixtures/recorded/languages/clojure/chuckItemFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/chuckItemFine2.yml rename to resources/fixtures/recorded/languages/clojure/chuckItemFine2.yml diff --git a/data/fixtures/recorded/languages/clojure/chuckItemZip.yml b/resources/fixtures/recorded/languages/clojure/chuckItemZip.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/chuckItemZip.yml rename to resources/fixtures/recorded/languages/clojure/chuckItemZip.yml diff --git a/data/fixtures/recorded/languages/clojure/chuckItemZip2.yml b/resources/fixtures/recorded/languages/clojure/chuckItemZip2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/chuckItemZip2.yml rename to resources/fixtures/recorded/languages/clojure/chuckItemZip2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearArgue.yml b/resources/fixtures/recorded/languages/clojure/clearArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearArgue.yml rename to resources/fixtures/recorded/languages/clojure/clearArgue.yml diff --git a/data/fixtures/recorded/languages/clojure/clearArgue2.yml b/resources/fixtures/recorded/languages/clojure/clearArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearArgue2.yml rename to resources/fixtures/recorded/languages/clojure/clearArgue2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearArgue3.yml b/resources/fixtures/recorded/languages/clojure/clearArgue3.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearArgue3.yml rename to resources/fixtures/recorded/languages/clojure/clearArgue3.yml diff --git a/data/fixtures/recorded/languages/clojure/clearCall.yml b/resources/fixtures/recorded/languages/clojure/clearCall.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearCall.yml rename to resources/fixtures/recorded/languages/clojure/clearCall.yml diff --git a/data/fixtures/recorded/languages/clojure/clearCall2.yml b/resources/fixtures/recorded/languages/clojure/clearCall2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearCall2.yml rename to resources/fixtures/recorded/languages/clojure/clearCall2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearComment.yml b/resources/fixtures/recorded/languages/clojure/clearComment.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearComment.yml rename to resources/fixtures/recorded/languages/clojure/clearComment.yml diff --git a/data/fixtures/recorded/languages/clojure/clearCondition.yml b/resources/fixtures/recorded/languages/clojure/clearCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearCondition.yml rename to resources/fixtures/recorded/languages/clojure/clearCondition.yml diff --git a/data/fixtures/recorded/languages/clojure/clearEveryItem.yml b/resources/fixtures/recorded/languages/clojure/clearEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearEveryItem.yml rename to resources/fixtures/recorded/languages/clojure/clearEveryItem.yml diff --git a/data/fixtures/recorded/languages/clojure/clearEveryKey.yml b/resources/fixtures/recorded/languages/clojure/clearEveryKey.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearEveryKey.yml rename to resources/fixtures/recorded/languages/clojure/clearEveryKey.yml diff --git a/data/fixtures/recorded/languages/clojure/clearEveryValue.yml b/resources/fixtures/recorded/languages/clojure/clearEveryValue.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearEveryValue.yml rename to resources/fixtures/recorded/languages/clojure/clearEveryValue.yml diff --git a/data/fixtures/recorded/languages/clojure/clearFunk.yml b/resources/fixtures/recorded/languages/clojure/clearFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearFunk.yml rename to resources/fixtures/recorded/languages/clojure/clearFunk.yml diff --git a/data/fixtures/recorded/languages/clojure/clearFunk2.yml b/resources/fixtures/recorded/languages/clojure/clearFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearFunk2.yml rename to resources/fixtures/recorded/languages/clojure/clearFunk2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearIfState.yml b/resources/fixtures/recorded/languages/clojure/clearIfState.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearIfState.yml rename to resources/fixtures/recorded/languages/clojure/clearIfState.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItem.yml b/resources/fixtures/recorded/languages/clojure/clearItem.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItem.yml rename to resources/fixtures/recorded/languages/clojure/clearItem.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItem2.yml b/resources/fixtures/recorded/languages/clojure/clearItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItem2.yml rename to resources/fixtures/recorded/languages/clojure/clearItem2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItem3.yml b/resources/fixtures/recorded/languages/clojure/clearItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItem3.yml rename to resources/fixtures/recorded/languages/clojure/clearItem3.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItem4.yml b/resources/fixtures/recorded/languages/clojure/clearItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItem4.yml rename to resources/fixtures/recorded/languages/clojure/clearItem4.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItem5.yml b/resources/fixtures/recorded/languages/clojure/clearItem5.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItem5.yml rename to resources/fixtures/recorded/languages/clojure/clearItem5.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItem6.yml b/resources/fixtures/recorded/languages/clojure/clearItem6.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItem6.yml rename to resources/fixtures/recorded/languages/clojure/clearItem6.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItemBat.yml b/resources/fixtures/recorded/languages/clojure/clearItemBat.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItemBat.yml rename to resources/fixtures/recorded/languages/clojure/clearItemBat.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItemBatClearItemBat.yml b/resources/fixtures/recorded/languages/clojure/clearItemBatClearItemBat.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItemBatClearItemBat.yml rename to resources/fixtures/recorded/languages/clojure/clearItemBatClearItemBat.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItemFine.yml b/resources/fixtures/recorded/languages/clojure/clearItemFine.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItemFine.yml rename to resources/fixtures/recorded/languages/clojure/clearItemFine.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItemWhale.yml b/resources/fixtures/recorded/languages/clojure/clearItemWhale.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItemWhale.yml rename to resources/fixtures/recorded/languages/clojure/clearItemWhale.yml diff --git a/data/fixtures/recorded/languages/clojure/clearItemZip.yml b/resources/fixtures/recorded/languages/clojure/clearItemZip.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearItemZip.yml rename to resources/fixtures/recorded/languages/clojure/clearItemZip.yml diff --git a/data/fixtures/recorded/languages/clojure/clearKey.yml b/resources/fixtures/recorded/languages/clojure/clearKey.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearKey.yml rename to resources/fixtures/recorded/languages/clojure/clearKey.yml diff --git a/data/fixtures/recorded/languages/clojure/clearKeyWhale.yml b/resources/fixtures/recorded/languages/clojure/clearKeyWhale.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearKeyWhale.yml rename to resources/fixtures/recorded/languages/clojure/clearKeyWhale.yml diff --git a/data/fixtures/recorded/languages/clojure/clearKeyWhale2.yml b/resources/fixtures/recorded/languages/clojure/clearKeyWhale2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearKeyWhale2.yml rename to resources/fixtures/recorded/languages/clojure/clearKeyWhale2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearKeyZip.yml b/resources/fixtures/recorded/languages/clojure/clearKeyZip.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearKeyZip.yml rename to resources/fixtures/recorded/languages/clojure/clearKeyZip.yml diff --git a/data/fixtures/recorded/languages/clojure/clearKeyZip2.yml b/resources/fixtures/recorded/languages/clojure/clearKeyZip2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearKeyZip2.yml rename to resources/fixtures/recorded/languages/clojure/clearKeyZip2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearLambda.yml b/resources/fixtures/recorded/languages/clojure/clearLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearLambda.yml rename to resources/fixtures/recorded/languages/clojure/clearLambda.yml diff --git a/data/fixtures/recorded/languages/clojure/clearLambda2.yml b/resources/fixtures/recorded/languages/clojure/clearLambda2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearLambda2.yml rename to resources/fixtures/recorded/languages/clojure/clearLambda2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearList.yml b/resources/fixtures/recorded/languages/clojure/clearList.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearList.yml rename to resources/fixtures/recorded/languages/clojure/clearList.yml diff --git a/data/fixtures/recorded/languages/clojure/clearList2.yml b/resources/fixtures/recorded/languages/clojure/clearList2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearList2.yml rename to resources/fixtures/recorded/languages/clojure/clearList2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearMap.yml b/resources/fixtures/recorded/languages/clojure/clearMap.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearMap.yml rename to resources/fixtures/recorded/languages/clojure/clearMap.yml diff --git a/data/fixtures/recorded/languages/clojure/clearName.yml b/resources/fixtures/recorded/languages/clojure/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearName.yml rename to resources/fixtures/recorded/languages/clojure/clearName.yml diff --git a/data/fixtures/recorded/languages/clojure/clearName2.yml b/resources/fixtures/recorded/languages/clojure/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearName2.yml rename to resources/fixtures/recorded/languages/clojure/clearName2.yml diff --git a/data/fixtures/recorded/languages/clojure/clearValueBat.yml b/resources/fixtures/recorded/languages/clojure/clearValueBat.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearValueBat.yml rename to resources/fixtures/recorded/languages/clojure/clearValueBat.yml diff --git a/data/fixtures/recorded/languages/clojure/clearValueZip.yml b/resources/fixtures/recorded/languages/clojure/clearValueZip.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/clearValueZip.yml rename to resources/fixtures/recorded/languages/clojure/clearValueZip.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValue.yml b/resources/fixtures/recorded/languages/clojure/takeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValue.yml rename to resources/fixtures/recorded/languages/clojure/takeValue.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValueBat.yml b/resources/fixtures/recorded/languages/clojure/takeValueBat.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValueBat.yml rename to resources/fixtures/recorded/languages/clojure/takeValueBat.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValueBat2.yml b/resources/fixtures/recorded/languages/clojure/takeValueBat2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValueBat2.yml rename to resources/fixtures/recorded/languages/clojure/takeValueBat2.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValueFine.yml b/resources/fixtures/recorded/languages/clojure/takeValueFine.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValueFine.yml rename to resources/fixtures/recorded/languages/clojure/takeValueFine.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValueFine2.yml b/resources/fixtures/recorded/languages/clojure/takeValueFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValueFine2.yml rename to resources/fixtures/recorded/languages/clojure/takeValueFine2.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValueWhale.yml b/resources/fixtures/recorded/languages/clojure/takeValueWhale.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValueWhale.yml rename to resources/fixtures/recorded/languages/clojure/takeValueWhale.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValueZip.yml b/resources/fixtures/recorded/languages/clojure/takeValueZip.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValueZip.yml rename to resources/fixtures/recorded/languages/clojure/takeValueZip.yml diff --git a/data/fixtures/recorded/languages/clojure/takeValueZip2.yml b/resources/fixtures/recorded/languages/clojure/takeValueZip2.yml similarity index 100% rename from data/fixtures/recorded/languages/clojure/takeValueZip2.yml rename to resources/fixtures/recorded/languages/clojure/takeValueZip2.yml diff --git a/data/fixtures/recorded/languages/cpp/changeCall.yml b/resources/fixtures/recorded/languages/cpp/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/changeCall.yml rename to resources/fixtures/recorded/languages/cpp/changeCall.yml diff --git a/data/fixtures/recorded/languages/cpp/changeCallee.yml b/resources/fixtures/recorded/languages/cpp/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/changeCallee.yml rename to resources/fixtures/recorded/languages/cpp/changeCallee.yml diff --git a/data/fixtures/recorded/languages/cpp/changeCallee2.yml b/resources/fixtures/recorded/languages/cpp/changeCallee2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/changeCallee2.yml rename to resources/fixtures/recorded/languages/cpp/changeCallee2.yml diff --git a/data/fixtures/recorded/languages/cpp/changeCallee3.yml b/resources/fixtures/recorded/languages/cpp/changeCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/changeCallee3.yml rename to resources/fixtures/recorded/languages/cpp/changeCallee3.yml diff --git a/data/fixtures/recorded/languages/cpp/changeCallee4.yml b/resources/fixtures/recorded/languages/cpp/changeCallee4.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/changeCallee4.yml rename to resources/fixtures/recorded/languages/cpp/changeCallee4.yml diff --git a/data/fixtures/recorded/languages/cpp/chuckTypeAir.yml b/resources/fixtures/recorded/languages/cpp/chuckTypeAir.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/chuckTypeAir.yml rename to resources/fixtures/recorded/languages/cpp/chuckTypeAir.yml diff --git a/data/fixtures/recorded/languages/cpp/chuckTypeSoon.yml b/resources/fixtures/recorded/languages/cpp/chuckTypeSoon.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/chuckTypeSoon.yml rename to resources/fixtures/recorded/languages/cpp/chuckTypeSoon.yml diff --git a/data/fixtures/recorded/languages/cpp/chuckValue.yml b/resources/fixtures/recorded/languages/cpp/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/chuckValue.yml rename to resources/fixtures/recorded/languages/cpp/chuckValue.yml diff --git a/data/fixtures/recorded/languages/cpp/clearAttribute.yml b/resources/fixtures/recorded/languages/cpp/clearAttribute.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/clearAttribute.yml rename to resources/fixtures/recorded/languages/cpp/clearAttribute.yml diff --git a/data/fixtures/recorded/languages/cpp/clearSubject.yml b/resources/fixtures/recorded/languages/cpp/clearSubject.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/clearSubject.yml rename to resources/fixtures/recorded/languages/cpp/clearSubject.yml diff --git a/data/fixtures/recorded/languages/cpp/clearSubject2.yml b/resources/fixtures/recorded/languages/cpp/clearSubject2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/clearSubject2.yml rename to resources/fixtures/recorded/languages/cpp/clearSubject2.yml diff --git a/data/fixtures/recorded/languages/cpp/clearValue.yml b/resources/fixtures/recorded/languages/cpp/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/clearValue.yml rename to resources/fixtures/recorded/languages/cpp/clearValue.yml diff --git a/data/fixtures/recorded/languages/cpp/takeArg.yml b/resources/fixtures/recorded/languages/cpp/takeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeArg.yml rename to resources/fixtures/recorded/languages/cpp/takeArg.yml diff --git a/data/fixtures/recorded/languages/cpp/takeArg2.yml b/resources/fixtures/recorded/languages/cpp/takeArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeArg2.yml rename to resources/fixtures/recorded/languages/cpp/takeArg2.yml diff --git a/data/fixtures/recorded/languages/cpp/takeCall.yml b/resources/fixtures/recorded/languages/cpp/takeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeCall.yml rename to resources/fixtures/recorded/languages/cpp/takeCall.yml diff --git a/data/fixtures/recorded/languages/cpp/takeEveryArg.yml b/resources/fixtures/recorded/languages/cpp/takeEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeEveryArg.yml rename to resources/fixtures/recorded/languages/cpp/takeEveryArg.yml diff --git a/data/fixtures/recorded/languages/cpp/takeEveryItem.yml b/resources/fixtures/recorded/languages/cpp/takeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeEveryItem.yml rename to resources/fixtures/recorded/languages/cpp/takeEveryItem.yml diff --git a/data/fixtures/recorded/languages/cpp/takeItem.yml b/resources/fixtures/recorded/languages/cpp/takeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeItem.yml rename to resources/fixtures/recorded/languages/cpp/takeItem.yml diff --git a/data/fixtures/recorded/languages/cpp/takeItem2.yml b/resources/fixtures/recorded/languages/cpp/takeItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeItem2.yml rename to resources/fixtures/recorded/languages/cpp/takeItem2.yml diff --git a/data/fixtures/recorded/languages/cpp/takeLambda.yml b/resources/fixtures/recorded/languages/cpp/takeLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeLambda.yml rename to resources/fixtures/recorded/languages/cpp/takeLambda.yml diff --git a/data/fixtures/recorded/languages/cpp/takeList.yml b/resources/fixtures/recorded/languages/cpp/takeList.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeList.yml rename to resources/fixtures/recorded/languages/cpp/takeList.yml diff --git a/data/fixtures/recorded/languages/cpp/takeList2.yml b/resources/fixtures/recorded/languages/cpp/takeList2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeList2.yml rename to resources/fixtures/recorded/languages/cpp/takeList2.yml diff --git a/data/fixtures/recorded/languages/cpp/takeState.yml b/resources/fixtures/recorded/languages/cpp/takeState.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeState.yml rename to resources/fixtures/recorded/languages/cpp/takeState.yml diff --git a/data/fixtures/recorded/languages/cpp/takeState2.yml b/resources/fixtures/recorded/languages/cpp/takeState2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeState2.yml rename to resources/fixtures/recorded/languages/cpp/takeState2.yml diff --git a/data/fixtures/recorded/languages/cpp/takeState3.yml b/resources/fixtures/recorded/languages/cpp/takeState3.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeState3.yml rename to resources/fixtures/recorded/languages/cpp/takeState3.yml diff --git a/data/fixtures/recorded/languages/cpp/takeType.yml b/resources/fixtures/recorded/languages/cpp/takeType.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeType.yml rename to resources/fixtures/recorded/languages/cpp/takeType.yml diff --git a/data/fixtures/recorded/languages/cpp/takeType2.yml b/resources/fixtures/recorded/languages/cpp/takeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeType2.yml rename to resources/fixtures/recorded/languages/cpp/takeType2.yml diff --git a/data/fixtures/recorded/languages/cpp/takeType3.yml b/resources/fixtures/recorded/languages/cpp/takeType3.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeType3.yml rename to resources/fixtures/recorded/languages/cpp/takeType3.yml diff --git a/data/fixtures/recorded/languages/cpp/takeValue.yml b/resources/fixtures/recorded/languages/cpp/takeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeValue.yml rename to resources/fixtures/recorded/languages/cpp/takeValue.yml diff --git a/data/fixtures/recorded/languages/cpp/takeValue2.yml b/resources/fixtures/recorded/languages/cpp/takeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeValue2.yml rename to resources/fixtures/recorded/languages/cpp/takeValue2.yml diff --git a/data/fixtures/recorded/languages/cpp/takeValue3.yml b/resources/fixtures/recorded/languages/cpp/takeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/cpp/takeValue3.yml rename to resources/fixtures/recorded/languages/cpp/takeValue3.yml diff --git a/data/fixtures/recorded/languages/css/changeArgue.yml b/resources/fixtures/recorded/languages/css/changeArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeArgue.yml rename to resources/fixtures/recorded/languages/css/changeArgue.yml diff --git a/data/fixtures/recorded/languages/css/changeArgue2.yml b/resources/fixtures/recorded/languages/css/changeArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeArgue2.yml rename to resources/fixtures/recorded/languages/css/changeArgue2.yml diff --git a/data/fixtures/recorded/languages/css/changeArgue3.yml b/resources/fixtures/recorded/languages/css/changeArgue3.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeArgue3.yml rename to resources/fixtures/recorded/languages/css/changeArgue3.yml diff --git a/data/fixtures/recorded/languages/css/changeArgue4.yml b/resources/fixtures/recorded/languages/css/changeArgue4.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeArgue4.yml rename to resources/fixtures/recorded/languages/css/changeArgue4.yml diff --git a/data/fixtures/recorded/languages/css/changeArgue5.yml b/resources/fixtures/recorded/languages/css/changeArgue5.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeArgue5.yml rename to resources/fixtures/recorded/languages/css/changeArgue5.yml diff --git a/data/fixtures/recorded/languages/css/changeEveryArgue.yml b/resources/fixtures/recorded/languages/css/changeEveryArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeEveryArgue.yml rename to resources/fixtures/recorded/languages/css/changeEveryArgue.yml diff --git a/data/fixtures/recorded/languages/css/changeEveryArgue2.yml b/resources/fixtures/recorded/languages/css/changeEveryArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeEveryArgue2.yml rename to resources/fixtures/recorded/languages/css/changeEveryArgue2.yml diff --git a/data/fixtures/recorded/languages/css/changeEveryArgue3.yml b/resources/fixtures/recorded/languages/css/changeEveryArgue3.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeEveryArgue3.yml rename to resources/fixtures/recorded/languages/css/changeEveryArgue3.yml diff --git a/data/fixtures/recorded/languages/css/changeItem.yml b/resources/fixtures/recorded/languages/css/changeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeItem.yml rename to resources/fixtures/recorded/languages/css/changeItem.yml diff --git a/data/fixtures/recorded/languages/css/changeKey.yml b/resources/fixtures/recorded/languages/css/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeKey.yml rename to resources/fixtures/recorded/languages/css/changeKey.yml diff --git a/data/fixtures/recorded/languages/css/changeKey2.yml b/resources/fixtures/recorded/languages/css/changeKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeKey2.yml rename to resources/fixtures/recorded/languages/css/changeKey2.yml diff --git a/data/fixtures/recorded/languages/css/changeName.yml b/resources/fixtures/recorded/languages/css/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeName.yml rename to resources/fixtures/recorded/languages/css/changeName.yml diff --git a/data/fixtures/recorded/languages/css/changeName2.yml b/resources/fixtures/recorded/languages/css/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeName2.yml rename to resources/fixtures/recorded/languages/css/changeName2.yml diff --git a/data/fixtures/recorded/languages/css/changeName3.yml b/resources/fixtures/recorded/languages/css/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeName3.yml rename to resources/fixtures/recorded/languages/css/changeName3.yml diff --git a/data/fixtures/recorded/languages/css/changeName6.yml b/resources/fixtures/recorded/languages/css/changeName6.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeName6.yml rename to resources/fixtures/recorded/languages/css/changeName6.yml diff --git a/data/fixtures/recorded/languages/css/changeRound.yml b/resources/fixtures/recorded/languages/css/changeRound.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeRound.yml rename to resources/fixtures/recorded/languages/css/changeRound.yml diff --git a/data/fixtures/recorded/languages/css/changeSelector.yml b/resources/fixtures/recorded/languages/css/changeSelector.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeSelector.yml rename to resources/fixtures/recorded/languages/css/changeSelector.yml diff --git a/data/fixtures/recorded/languages/css/changeSelector2.yml b/resources/fixtures/recorded/languages/css/changeSelector2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeSelector2.yml rename to resources/fixtures/recorded/languages/css/changeSelector2.yml diff --git a/data/fixtures/recorded/languages/css/changeSelector3.yml b/resources/fixtures/recorded/languages/css/changeSelector3.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeSelector3.yml rename to resources/fixtures/recorded/languages/css/changeSelector3.yml diff --git a/data/fixtures/recorded/languages/css/changeSelector4.yml b/resources/fixtures/recorded/languages/css/changeSelector4.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeSelector4.yml rename to resources/fixtures/recorded/languages/css/changeSelector4.yml diff --git a/data/fixtures/recorded/languages/css/changeSelector5.yml b/resources/fixtures/recorded/languages/css/changeSelector5.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeSelector5.yml rename to resources/fixtures/recorded/languages/css/changeSelector5.yml diff --git a/data/fixtures/recorded/languages/css/changeState.yml b/resources/fixtures/recorded/languages/css/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeState.yml rename to resources/fixtures/recorded/languages/css/changeState.yml diff --git a/data/fixtures/recorded/languages/css/changeState5.yml b/resources/fixtures/recorded/languages/css/changeState5.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeState5.yml rename to resources/fixtures/recorded/languages/css/changeState5.yml diff --git a/data/fixtures/recorded/languages/css/changeStateAir.yml b/resources/fixtures/recorded/languages/css/changeStateAir.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeStateAir.yml rename to resources/fixtures/recorded/languages/css/changeStateAir.yml diff --git a/data/fixtures/recorded/languages/css/changeStateHarp.yml b/resources/fixtures/recorded/languages/css/changeStateHarp.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeStateHarp.yml rename to resources/fixtures/recorded/languages/css/changeStateHarp.yml diff --git a/data/fixtures/recorded/languages/css/changeValue.yml b/resources/fixtures/recorded/languages/css/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeValue.yml rename to resources/fixtures/recorded/languages/css/changeValue.yml diff --git a/data/fixtures/recorded/languages/css/changeValue2.yml b/resources/fixtures/recorded/languages/css/changeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeValue2.yml rename to resources/fixtures/recorded/languages/css/changeValue2.yml diff --git a/data/fixtures/recorded/languages/css/changeValue4.yml b/resources/fixtures/recorded/languages/css/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeValue4.yml rename to resources/fixtures/recorded/languages/css/changeValue4.yml diff --git a/data/fixtures/recorded/languages/css/changeValue6.yml b/resources/fixtures/recorded/languages/css/changeValue6.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeValue6.yml rename to resources/fixtures/recorded/languages/css/changeValue6.yml diff --git a/data/fixtures/recorded/languages/css/changeValue9.yml b/resources/fixtures/recorded/languages/css/changeValue9.yml similarity index 100% rename from data/fixtures/recorded/languages/css/changeValue9.yml rename to resources/fixtures/recorded/languages/css/changeValue9.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue.yml b/resources/fixtures/recorded/languages/css/chuckArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue.yml rename to resources/fixtures/recorded/languages/css/chuckArgue.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue2.yml b/resources/fixtures/recorded/languages/css/chuckArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue2.yml rename to resources/fixtures/recorded/languages/css/chuckArgue2.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue3.yml b/resources/fixtures/recorded/languages/css/chuckArgue3.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue3.yml rename to resources/fixtures/recorded/languages/css/chuckArgue3.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue4.yml b/resources/fixtures/recorded/languages/css/chuckArgue4.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue4.yml rename to resources/fixtures/recorded/languages/css/chuckArgue4.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue5.yml b/resources/fixtures/recorded/languages/css/chuckArgue5.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue5.yml rename to resources/fixtures/recorded/languages/css/chuckArgue5.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue6.yml b/resources/fixtures/recorded/languages/css/chuckArgue6.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue6.yml rename to resources/fixtures/recorded/languages/css/chuckArgue6.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue7.yml b/resources/fixtures/recorded/languages/css/chuckArgue7.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue7.yml rename to resources/fixtures/recorded/languages/css/chuckArgue7.yml diff --git a/data/fixtures/recorded/languages/css/chuckArgue8.yml b/resources/fixtures/recorded/languages/css/chuckArgue8.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckArgue8.yml rename to resources/fixtures/recorded/languages/css/chuckArgue8.yml diff --git a/data/fixtures/recorded/languages/css/chuckEveryArgue2.yml b/resources/fixtures/recorded/languages/css/chuckEveryArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckEveryArgue2.yml rename to resources/fixtures/recorded/languages/css/chuckEveryArgue2.yml diff --git a/data/fixtures/recorded/languages/css/chuckState.yml b/resources/fixtures/recorded/languages/css/chuckState.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckState.yml rename to resources/fixtures/recorded/languages/css/chuckState.yml diff --git a/data/fixtures/recorded/languages/css/chuckState2.yml b/resources/fixtures/recorded/languages/css/chuckState2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckState2.yml rename to resources/fixtures/recorded/languages/css/chuckState2.yml diff --git a/data/fixtures/recorded/languages/css/chuckValue.yml b/resources/fixtures/recorded/languages/css/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckValue.yml rename to resources/fixtures/recorded/languages/css/chuckValue.yml diff --git a/data/fixtures/recorded/languages/css/chuckValue2.yml b/resources/fixtures/recorded/languages/css/chuckValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckValue2.yml rename to resources/fixtures/recorded/languages/css/chuckValue2.yml diff --git a/data/fixtures/recorded/languages/css/chuckValue3.yml b/resources/fixtures/recorded/languages/css/chuckValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/css/chuckValue3.yml rename to resources/fixtures/recorded/languages/css/chuckValue3.yml diff --git a/data/fixtures/recorded/languages/css/clearUnit.yml b/resources/fixtures/recorded/languages/css/clearUnit.yml similarity index 100% rename from data/fixtures/recorded/languages/css/clearUnit.yml rename to resources/fixtures/recorded/languages/css/clearUnit.yml diff --git a/data/fixtures/recorded/languages/css/clearUnit2.yml b/resources/fixtures/recorded/languages/css/clearUnit2.yml similarity index 100% rename from data/fixtures/recorded/languages/css/clearUnit2.yml rename to resources/fixtures/recorded/languages/css/clearUnit2.yml diff --git a/data/fixtures/recorded/languages/css/clearUnit3.yml b/resources/fixtures/recorded/languages/css/clearUnit3.yml similarity index 100% rename from data/fixtures/recorded/languages/css/clearUnit3.yml rename to resources/fixtures/recorded/languages/css/clearUnit3.yml diff --git a/data/fixtures/recorded/languages/css/clearUnit4.yml b/resources/fixtures/recorded/languages/css/clearUnit4.yml similarity index 100% rename from data/fixtures/recorded/languages/css/clearUnit4.yml rename to resources/fixtures/recorded/languages/css/clearUnit4.yml diff --git a/data/fixtures/recorded/languages/css/clearUnit5.yml b/resources/fixtures/recorded/languages/css/clearUnit5.yml similarity index 100% rename from data/fixtures/recorded/languages/css/clearUnit5.yml rename to resources/fixtures/recorded/languages/css/clearUnit5.yml diff --git a/data/fixtures/recorded/languages/go/assignStatement.yml b/resources/fixtures/recorded/languages/go/assignStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/assignStatement.yml rename to resources/fixtures/recorded/languages/go/assignStatement.yml diff --git a/data/fixtures/recorded/languages/go/changeBranch.yml b/resources/fixtures/recorded/languages/go/changeBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeBranch.yml rename to resources/fixtures/recorded/languages/go/changeBranch.yml diff --git a/data/fixtures/recorded/languages/go/changeBranch2.yml b/resources/fixtures/recorded/languages/go/changeBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeBranch2.yml rename to resources/fixtures/recorded/languages/go/changeBranch2.yml diff --git a/data/fixtures/recorded/languages/go/changeBranch3.yml b/resources/fixtures/recorded/languages/go/changeBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeBranch3.yml rename to resources/fixtures/recorded/languages/go/changeBranch3.yml diff --git a/data/fixtures/recorded/languages/go/changeBranchAir.yml b/resources/fixtures/recorded/languages/go/changeBranchAir.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeBranchAir.yml rename to resources/fixtures/recorded/languages/go/changeBranchAir.yml diff --git a/data/fixtures/recorded/languages/go/changeBranchCap.yml b/resources/fixtures/recorded/languages/go/changeBranchCap.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeBranchCap.yml rename to resources/fixtures/recorded/languages/go/changeBranchCap.yml diff --git a/data/fixtures/recorded/languages/go/changeBranchCap2.yml b/resources/fixtures/recorded/languages/go/changeBranchCap2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeBranchCap2.yml rename to resources/fixtures/recorded/languages/go/changeBranchCap2.yml diff --git a/data/fixtures/recorded/languages/go/changeBranchDrum.yml b/resources/fixtures/recorded/languages/go/changeBranchDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeBranchDrum.yml rename to resources/fixtures/recorded/languages/go/changeBranchDrum.yml diff --git a/data/fixtures/recorded/languages/go/changeCall.yml b/resources/fixtures/recorded/languages/go/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeCall.yml rename to resources/fixtures/recorded/languages/go/changeCall.yml diff --git a/data/fixtures/recorded/languages/go/changeCallee.yml b/resources/fixtures/recorded/languages/go/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeCallee.yml rename to resources/fixtures/recorded/languages/go/changeCallee.yml diff --git a/data/fixtures/recorded/languages/go/changeCallee2.yml b/resources/fixtures/recorded/languages/go/changeCallee2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeCallee2.yml rename to resources/fixtures/recorded/languages/go/changeCallee2.yml diff --git a/data/fixtures/recorded/languages/go/changeCallee3.yml b/resources/fixtures/recorded/languages/go/changeCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeCallee3.yml rename to resources/fixtures/recorded/languages/go/changeCallee3.yml diff --git a/data/fixtures/recorded/languages/go/changeCallee4.yml b/resources/fixtures/recorded/languages/go/changeCallee4.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeCallee4.yml rename to resources/fixtures/recorded/languages/go/changeCallee4.yml diff --git a/data/fixtures/recorded/languages/go/changeCallee5.yml b/resources/fixtures/recorded/languages/go/changeCallee5.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeCallee5.yml rename to resources/fixtures/recorded/languages/go/changeCallee5.yml diff --git a/data/fixtures/recorded/languages/go/changeEveryBranch.yml b/resources/fixtures/recorded/languages/go/changeEveryBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeEveryBranch.yml rename to resources/fixtures/recorded/languages/go/changeEveryBranch.yml diff --git a/data/fixtures/recorded/languages/go/changeEveryBranch2.yml b/resources/fixtures/recorded/languages/go/changeEveryBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeEveryBranch2.yml rename to resources/fixtures/recorded/languages/go/changeEveryBranch2.yml diff --git a/data/fixtures/recorded/languages/go/changeEveryBranchEach.yml b/resources/fixtures/recorded/languages/go/changeEveryBranchEach.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeEveryBranchEach.yml rename to resources/fixtures/recorded/languages/go/changeEveryBranchEach.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkAir.yml b/resources/fixtures/recorded/languages/go/changeFunkAir.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkAir.yml rename to resources/fixtures/recorded/languages/go/changeFunkAir.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkBat.yml b/resources/fixtures/recorded/languages/go/changeFunkBat.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkBat.yml rename to resources/fixtures/recorded/languages/go/changeFunkBat.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkBat2.yml b/resources/fixtures/recorded/languages/go/changeFunkBat2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkBat2.yml rename to resources/fixtures/recorded/languages/go/changeFunkBat2.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkFine.yml b/resources/fixtures/recorded/languages/go/changeFunkFine.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkFine.yml rename to resources/fixtures/recorded/languages/go/changeFunkFine.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkFine2.yml b/resources/fixtures/recorded/languages/go/changeFunkFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkFine2.yml rename to resources/fixtures/recorded/languages/go/changeFunkFine2.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkFine3.yml b/resources/fixtures/recorded/languages/go/changeFunkFine3.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkFine3.yml rename to resources/fixtures/recorded/languages/go/changeFunkFine3.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkNameBat.yml b/resources/fixtures/recorded/languages/go/changeFunkNameBat.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkNameBat.yml rename to resources/fixtures/recorded/languages/go/changeFunkNameBat.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkNameFine.yml b/resources/fixtures/recorded/languages/go/changeFunkNameFine.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkNameFine.yml rename to resources/fixtures/recorded/languages/go/changeFunkNameFine.yml diff --git a/data/fixtures/recorded/languages/go/changeFunkTrap.yml b/resources/fixtures/recorded/languages/go/changeFunkTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeFunkTrap.yml rename to resources/fixtures/recorded/languages/go/changeFunkTrap.yml diff --git a/data/fixtures/recorded/languages/go/changeInsideFunk.yml b/resources/fixtures/recorded/languages/go/changeInsideFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeInsideFunk.yml rename to resources/fixtures/recorded/languages/go/changeInsideFunk.yml diff --git a/data/fixtures/recorded/languages/go/changeInsideFunkBat.yml b/resources/fixtures/recorded/languages/go/changeInsideFunkBat.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeInsideFunkBat.yml rename to resources/fixtures/recorded/languages/go/changeInsideFunkBat.yml diff --git a/data/fixtures/recorded/languages/go/changeInsideFunkBrace.yml b/resources/fixtures/recorded/languages/go/changeInsideFunkBrace.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeInsideFunkBrace.yml rename to resources/fixtures/recorded/languages/go/changeInsideFunkBrace.yml diff --git a/data/fixtures/recorded/languages/go/changeInsideFunkFine.yml b/resources/fixtures/recorded/languages/go/changeInsideFunkFine.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeInsideFunkFine.yml rename to resources/fixtures/recorded/languages/go/changeInsideFunkFine.yml diff --git a/data/fixtures/recorded/languages/go/changeInsideLambda.yml b/resources/fixtures/recorded/languages/go/changeInsideLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeInsideLambda.yml rename to resources/fixtures/recorded/languages/go/changeInsideLambda.yml diff --git a/data/fixtures/recorded/languages/go/changeInsideLambdaBat.yml b/resources/fixtures/recorded/languages/go/changeInsideLambdaBat.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeInsideLambdaBat.yml rename to resources/fixtures/recorded/languages/go/changeInsideLambdaBat.yml diff --git a/data/fixtures/recorded/languages/go/changeLambdaBat.yml b/resources/fixtures/recorded/languages/go/changeLambdaBat.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeLambdaBat.yml rename to resources/fixtures/recorded/languages/go/changeLambdaBat.yml diff --git a/data/fixtures/recorded/languages/go/changeLambdaFine.yml b/resources/fixtures/recorded/languages/go/changeLambdaFine.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeLambdaFine.yml rename to resources/fixtures/recorded/languages/go/changeLambdaFine.yml diff --git a/data/fixtures/recorded/languages/go/changeList.yml b/resources/fixtures/recorded/languages/go/changeList.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeList.yml rename to resources/fixtures/recorded/languages/go/changeList.yml diff --git a/data/fixtures/recorded/languages/go/changeMap.yml b/resources/fixtures/recorded/languages/go/changeMap.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeMap.yml rename to resources/fixtures/recorded/languages/go/changeMap.yml diff --git a/data/fixtures/recorded/languages/go/changeMapOne.yml b/resources/fixtures/recorded/languages/go/changeMapOne.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeMapOne.yml rename to resources/fixtures/recorded/languages/go/changeMapOne.yml diff --git a/data/fixtures/recorded/languages/go/changeRound.yml b/resources/fixtures/recorded/languages/go/changeRound.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeRound.yml rename to resources/fixtures/recorded/languages/go/changeRound.yml diff --git a/data/fixtures/recorded/languages/go/changeRound2.yml b/resources/fixtures/recorded/languages/go/changeRound2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/changeRound2.yml rename to resources/fixtures/recorded/languages/go/changeRound2.yml diff --git a/data/fixtures/recorded/languages/go/chuckArg.yml b/resources/fixtures/recorded/languages/go/chuckArg.yml similarity index 100% rename from data/fixtures/recorded/languages/go/chuckArg.yml rename to resources/fixtures/recorded/languages/go/chuckArg.yml diff --git a/data/fixtures/recorded/languages/go/chuckArg2.yml b/resources/fixtures/recorded/languages/go/chuckArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/chuckArg2.yml rename to resources/fixtures/recorded/languages/go/chuckArg2.yml diff --git a/data/fixtures/recorded/languages/go/chuckBranch.yml b/resources/fixtures/recorded/languages/go/chuckBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/go/chuckBranch.yml rename to resources/fixtures/recorded/languages/go/chuckBranch.yml diff --git a/data/fixtures/recorded/languages/go/chuckBranch2.yml b/resources/fixtures/recorded/languages/go/chuckBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/chuckBranch2.yml rename to resources/fixtures/recorded/languages/go/chuckBranch2.yml diff --git a/data/fixtures/recorded/languages/go/chuckBranch3.yml b/resources/fixtures/recorded/languages/go/chuckBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/go/chuckBranch3.yml rename to resources/fixtures/recorded/languages/go/chuckBranch3.yml diff --git a/data/fixtures/recorded/languages/go/chuckValue.yml b/resources/fixtures/recorded/languages/go/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/go/chuckValue.yml rename to resources/fixtures/recorded/languages/go/chuckValue.yml diff --git a/data/fixtures/recorded/languages/go/clearCondition.yml b/resources/fixtures/recorded/languages/go/clearCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/go/clearCondition.yml rename to resources/fixtures/recorded/languages/go/clearCondition.yml diff --git a/data/fixtures/recorded/languages/go/clearIfState.yml b/resources/fixtures/recorded/languages/go/clearIfState.yml similarity index 100% rename from data/fixtures/recorded/languages/go/clearIfState.yml rename to resources/fixtures/recorded/languages/go/clearIfState.yml diff --git a/data/fixtures/recorded/languages/go/clearPair.yml b/resources/fixtures/recorded/languages/go/clearPair.yml similarity index 100% rename from data/fixtures/recorded/languages/go/clearPair.yml rename to resources/fixtures/recorded/languages/go/clearPair.yml diff --git a/data/fixtures/recorded/languages/go/clearState.yml b/resources/fixtures/recorded/languages/go/clearState.yml similarity index 100% rename from data/fixtures/recorded/languages/go/clearState.yml rename to resources/fixtures/recorded/languages/go/clearState.yml diff --git a/data/fixtures/recorded/languages/go/cloneBranch.yml b/resources/fixtures/recorded/languages/go/cloneBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/go/cloneBranch.yml rename to resources/fixtures/recorded/languages/go/cloneBranch.yml diff --git a/data/fixtures/recorded/languages/go/cloneBranch2.yml b/resources/fixtures/recorded/languages/go/cloneBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/cloneBranch2.yml rename to resources/fixtures/recorded/languages/go/cloneBranch2.yml diff --git a/data/fixtures/recorded/languages/go/cloneBranch3.yml b/resources/fixtures/recorded/languages/go/cloneBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/go/cloneBranch3.yml rename to resources/fixtures/recorded/languages/go/cloneBranch3.yml diff --git a/data/fixtures/recorded/languages/go/cloneBranchCap.yml b/resources/fixtures/recorded/languages/go/cloneBranchCap.yml similarity index 100% rename from data/fixtures/recorded/languages/go/cloneBranchCap.yml rename to resources/fixtures/recorded/languages/go/cloneBranchCap.yml diff --git a/data/fixtures/recorded/languages/go/cloneBranchDrum.yml b/resources/fixtures/recorded/languages/go/cloneBranchDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/go/cloneBranchDrum.yml rename to resources/fixtures/recorded/languages/go/cloneBranchDrum.yml diff --git a/data/fixtures/recorded/languages/go/cloneBranchEach.yml b/resources/fixtures/recorded/languages/go/cloneBranchEach.yml similarity index 100% rename from data/fixtures/recorded/languages/go/cloneBranchEach.yml rename to resources/fixtures/recorded/languages/go/cloneBranchEach.yml diff --git a/data/fixtures/recorded/languages/go/cloneBranchEach2.yml b/resources/fixtures/recorded/languages/go/cloneBranchEach2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/cloneBranchEach2.yml rename to resources/fixtures/recorded/languages/go/cloneBranchEach2.yml diff --git a/data/fixtures/recorded/languages/go/constStatement.yml b/resources/fixtures/recorded/languages/go/constStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/constStatement.yml rename to resources/fixtures/recorded/languages/go/constStatement.yml diff --git a/data/fixtures/recorded/languages/go/decStatement.yml b/resources/fixtures/recorded/languages/go/decStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/decStatement.yml rename to resources/fixtures/recorded/languages/go/decStatement.yml diff --git a/data/fixtures/recorded/languages/go/drinkBranchCap.yml b/resources/fixtures/recorded/languages/go/drinkBranchCap.yml similarity index 100% rename from data/fixtures/recorded/languages/go/drinkBranchCap.yml rename to resources/fixtures/recorded/languages/go/drinkBranchCap.yml diff --git a/data/fixtures/recorded/languages/go/drinkBranchEach.yml b/resources/fixtures/recorded/languages/go/drinkBranchEach.yml similarity index 100% rename from data/fixtures/recorded/languages/go/drinkBranchEach.yml rename to resources/fixtures/recorded/languages/go/drinkBranchEach.yml diff --git a/data/fixtures/recorded/languages/go/expressionStatement.yml b/resources/fixtures/recorded/languages/go/expressionStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/expressionStatement.yml rename to resources/fixtures/recorded/languages/go/expressionStatement.yml diff --git a/data/fixtures/recorded/languages/go/ifStatement.yml b/resources/fixtures/recorded/languages/go/ifStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/ifStatement.yml rename to resources/fixtures/recorded/languages/go/ifStatement.yml diff --git a/data/fixtures/recorded/languages/go/incStatement.yml b/resources/fixtures/recorded/languages/go/incStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/incStatement.yml rename to resources/fixtures/recorded/languages/go/incStatement.yml diff --git a/data/fixtures/recorded/languages/go/pourBranchDrum.yml b/resources/fixtures/recorded/languages/go/pourBranchDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/go/pourBranchDrum.yml rename to resources/fixtures/recorded/languages/go/pourBranchDrum.yml diff --git a/data/fixtures/recorded/languages/go/pourBranchEach.yml b/resources/fixtures/recorded/languages/go/pourBranchEach.yml similarity index 100% rename from data/fixtures/recorded/languages/go/pourBranchEach.yml rename to resources/fixtures/recorded/languages/go/pourBranchEach.yml diff --git a/data/fixtures/recorded/languages/go/sendStatement.yml b/resources/fixtures/recorded/languages/go/sendStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/sendStatement.yml rename to resources/fixtures/recorded/languages/go/sendStatement.yml diff --git a/data/fixtures/recorded/languages/go/shortVarStatement.yml b/resources/fixtures/recorded/languages/go/shortVarStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/shortVarStatement.yml rename to resources/fixtures/recorded/languages/go/shortVarStatement.yml diff --git a/data/fixtures/recorded/languages/go/takeArg.yml b/resources/fixtures/recorded/languages/go/takeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeArg.yml rename to resources/fixtures/recorded/languages/go/takeArg.yml diff --git a/data/fixtures/recorded/languages/go/takeArg2.yml b/resources/fixtures/recorded/languages/go/takeArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeArg2.yml rename to resources/fixtures/recorded/languages/go/takeArg2.yml diff --git a/data/fixtures/recorded/languages/go/takeArg3.yml b/resources/fixtures/recorded/languages/go/takeArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeArg3.yml rename to resources/fixtures/recorded/languages/go/takeArg3.yml diff --git a/data/fixtures/recorded/languages/go/takeCall.yml b/resources/fixtures/recorded/languages/go/takeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeCall.yml rename to resources/fixtures/recorded/languages/go/takeCall.yml diff --git a/data/fixtures/recorded/languages/go/takeComment.yml b/resources/fixtures/recorded/languages/go/takeComment.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeComment.yml rename to resources/fixtures/recorded/languages/go/takeComment.yml diff --git a/data/fixtures/recorded/languages/go/takeEveryItem.yml b/resources/fixtures/recorded/languages/go/takeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeEveryItem.yml rename to resources/fixtures/recorded/languages/go/takeEveryItem.yml diff --git a/data/fixtures/recorded/languages/go/takeEveryKey.yml b/resources/fixtures/recorded/languages/go/takeEveryKey.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeEveryKey.yml rename to resources/fixtures/recorded/languages/go/takeEveryKey.yml diff --git a/data/fixtures/recorded/languages/go/takeFunk.yml b/resources/fixtures/recorded/languages/go/takeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeFunk.yml rename to resources/fixtures/recorded/languages/go/takeFunk.yml diff --git a/data/fixtures/recorded/languages/go/takeFunkName.yml b/resources/fixtures/recorded/languages/go/takeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeFunkName.yml rename to resources/fixtures/recorded/languages/go/takeFunkName.yml diff --git a/data/fixtures/recorded/languages/go/takeItem.yml b/resources/fixtures/recorded/languages/go/takeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeItem.yml rename to resources/fixtures/recorded/languages/go/takeItem.yml diff --git a/data/fixtures/recorded/languages/go/takeKey.yml b/resources/fixtures/recorded/languages/go/takeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeKey.yml rename to resources/fixtures/recorded/languages/go/takeKey.yml diff --git a/data/fixtures/recorded/languages/go/takeKey2.yml b/resources/fixtures/recorded/languages/go/takeKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeKey2.yml rename to resources/fixtures/recorded/languages/go/takeKey2.yml diff --git a/data/fixtures/recorded/languages/go/takeString.yml b/resources/fixtures/recorded/languages/go/takeString.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeString.yml rename to resources/fixtures/recorded/languages/go/takeString.yml diff --git a/data/fixtures/recorded/languages/go/takeType.yml b/resources/fixtures/recorded/languages/go/takeType.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeType.yml rename to resources/fixtures/recorded/languages/go/takeType.yml diff --git a/data/fixtures/recorded/languages/go/takeValue.yml b/resources/fixtures/recorded/languages/go/takeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeValue.yml rename to resources/fixtures/recorded/languages/go/takeValue.yml diff --git a/data/fixtures/recorded/languages/go/takeValue2.yml b/resources/fixtures/recorded/languages/go/takeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/go/takeValue2.yml rename to resources/fixtures/recorded/languages/go/takeValue2.yml diff --git a/data/fixtures/recorded/languages/go/typeDeclStatement.yml b/resources/fixtures/recorded/languages/go/typeDeclStatement.yml similarity index 100% rename from data/fixtures/recorded/languages/go/typeDeclStatement.yml rename to resources/fixtures/recorded/languages/go/typeDeclStatement.yml diff --git a/data/fixtures/recorded/languages/html/chuckCoreElement.yml b/resources/fixtures/recorded/languages/html/chuckCoreElement.yml similarity index 100% rename from data/fixtures/recorded/languages/html/chuckCoreElement.yml rename to resources/fixtures/recorded/languages/html/chuckCoreElement.yml diff --git a/data/fixtures/recorded/languages/html/chuckValue.yml b/resources/fixtures/recorded/languages/html/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/html/chuckValue.yml rename to resources/fixtures/recorded/languages/html/chuckValue.yml diff --git a/data/fixtures/recorded/languages/html/chuckValueInk.yml b/resources/fixtures/recorded/languages/html/chuckValueInk.yml similarity index 100% rename from data/fixtures/recorded/languages/html/chuckValueInk.yml rename to resources/fixtures/recorded/languages/html/chuckValueInk.yml diff --git a/data/fixtures/recorded/languages/html/clearAttributeVest.yml b/resources/fixtures/recorded/languages/html/clearAttributeVest.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearAttributeVest.yml rename to resources/fixtures/recorded/languages/html/clearAttributeVest.yml diff --git a/data/fixtures/recorded/languages/html/clearComment.yml b/resources/fixtures/recorded/languages/html/clearComment.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearComment.yml rename to resources/fixtures/recorded/languages/html/clearComment.yml diff --git a/data/fixtures/recorded/languages/html/clearCoreElement.yml b/resources/fixtures/recorded/languages/html/clearCoreElement.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearCoreElement.yml rename to resources/fixtures/recorded/languages/html/clearCoreElement.yml diff --git a/data/fixtures/recorded/languages/html/clearCoreElement2.yml b/resources/fixtures/recorded/languages/html/clearCoreElement2.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearCoreElement2.yml rename to resources/fixtures/recorded/languages/html/clearCoreElement2.yml diff --git a/data/fixtures/recorded/languages/html/clearElement.yml b/resources/fixtures/recorded/languages/html/clearElement.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearElement.yml rename to resources/fixtures/recorded/languages/html/clearElement.yml diff --git a/data/fixtures/recorded/languages/html/clearEndTag.yml b/resources/fixtures/recorded/languages/html/clearEndTag.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearEndTag.yml rename to resources/fixtures/recorded/languages/html/clearEndTag.yml diff --git a/data/fixtures/recorded/languages/html/clearKey.yml b/resources/fixtures/recorded/languages/html/clearKey.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearKey.yml rename to resources/fixtures/recorded/languages/html/clearKey.yml diff --git a/data/fixtures/recorded/languages/html/clearName.yml b/resources/fixtures/recorded/languages/html/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearName.yml rename to resources/fixtures/recorded/languages/html/clearName.yml diff --git a/data/fixtures/recorded/languages/html/clearStartTag.yml b/resources/fixtures/recorded/languages/html/clearStartTag.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearStartTag.yml rename to resources/fixtures/recorded/languages/html/clearStartTag.yml diff --git a/data/fixtures/recorded/languages/html/clearString.yml b/resources/fixtures/recorded/languages/html/clearString.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearString.yml rename to resources/fixtures/recorded/languages/html/clearString.yml diff --git a/data/fixtures/recorded/languages/html/clearTags.yml b/resources/fixtures/recorded/languages/html/clearTags.yml similarity index 100% rename from data/fixtures/recorded/languages/html/clearTags.yml rename to resources/fixtures/recorded/languages/html/clearTags.yml diff --git a/data/fixtures/recorded/languages/java/changeBranch.yml b/resources/fixtures/recorded/languages/java/changeBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeBranch.yml rename to resources/fixtures/recorded/languages/java/changeBranch.yml diff --git a/data/fixtures/recorded/languages/java/changeBranch2.yml b/resources/fixtures/recorded/languages/java/changeBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeBranch2.yml rename to resources/fixtures/recorded/languages/java/changeBranch2.yml diff --git a/data/fixtures/recorded/languages/java/changeBranch3.yml b/resources/fixtures/recorded/languages/java/changeBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeBranch3.yml rename to resources/fixtures/recorded/languages/java/changeBranch3.yml diff --git a/data/fixtures/recorded/languages/java/changeBranch4.yml b/resources/fixtures/recorded/languages/java/changeBranch4.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeBranch4.yml rename to resources/fixtures/recorded/languages/java/changeBranch4.yml diff --git a/data/fixtures/recorded/languages/java/changeBranch5.yml b/resources/fixtures/recorded/languages/java/changeBranch5.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeBranch5.yml rename to resources/fixtures/recorded/languages/java/changeBranch5.yml diff --git a/data/fixtures/recorded/languages/java/changeCall.yml b/resources/fixtures/recorded/languages/java/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCall.yml rename to resources/fixtures/recorded/languages/java/changeCall.yml diff --git a/data/fixtures/recorded/languages/java/changeCall2.yml b/resources/fixtures/recorded/languages/java/changeCall2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCall2.yml rename to resources/fixtures/recorded/languages/java/changeCall2.yml diff --git a/data/fixtures/recorded/languages/java/changeCallee.yml b/resources/fixtures/recorded/languages/java/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCallee.yml rename to resources/fixtures/recorded/languages/java/changeCallee.yml diff --git a/data/fixtures/recorded/languages/java/changeCallee2.yml b/resources/fixtures/recorded/languages/java/changeCallee2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCallee2.yml rename to resources/fixtures/recorded/languages/java/changeCallee2.yml diff --git a/data/fixtures/recorded/languages/java/changeCallee3.yml b/resources/fixtures/recorded/languages/java/changeCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCallee3.yml rename to resources/fixtures/recorded/languages/java/changeCallee3.yml diff --git a/data/fixtures/recorded/languages/java/changeCallee5.yml b/resources/fixtures/recorded/languages/java/changeCallee5.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCallee5.yml rename to resources/fixtures/recorded/languages/java/changeCallee5.yml diff --git a/data/fixtures/recorded/languages/java/changeCallee6.yml b/resources/fixtures/recorded/languages/java/changeCallee6.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCallee6.yml rename to resources/fixtures/recorded/languages/java/changeCallee6.yml diff --git a/data/fixtures/recorded/languages/java/changeCallee7.yml b/resources/fixtures/recorded/languages/java/changeCallee7.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCallee7.yml rename to resources/fixtures/recorded/languages/java/changeCallee7.yml diff --git a/data/fixtures/recorded/languages/java/changeCalleeSoap.yml b/resources/fixtures/recorded/languages/java/changeCalleeSoap.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCalleeSoap.yml rename to resources/fixtures/recorded/languages/java/changeCalleeSoap.yml diff --git a/data/fixtures/recorded/languages/java/changeCondition.yml b/resources/fixtures/recorded/languages/java/changeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCondition.yml rename to resources/fixtures/recorded/languages/java/changeCondition.yml diff --git a/data/fixtures/recorded/languages/java/changeCondition2.yml b/resources/fixtures/recorded/languages/java/changeCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCondition2.yml rename to resources/fixtures/recorded/languages/java/changeCondition2.yml diff --git a/data/fixtures/recorded/languages/java/changeCondition3.yml b/resources/fixtures/recorded/languages/java/changeCondition3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCondition3.yml rename to resources/fixtures/recorded/languages/java/changeCondition3.yml diff --git a/data/fixtures/recorded/languages/java/changeCondition4.yml b/resources/fixtures/recorded/languages/java/changeCondition4.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeCondition4.yml rename to resources/fixtures/recorded/languages/java/changeCondition4.yml diff --git a/data/fixtures/recorded/languages/java/changeEveryBranch3.yml b/resources/fixtures/recorded/languages/java/changeEveryBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeEveryBranch3.yml rename to resources/fixtures/recorded/languages/java/changeEveryBranch3.yml diff --git a/data/fixtures/recorded/languages/java/changeEveryName.yml b/resources/fixtures/recorded/languages/java/changeEveryName.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeEveryName.yml rename to resources/fixtures/recorded/languages/java/changeEveryName.yml diff --git a/data/fixtures/recorded/languages/java/changeIfState.yml b/resources/fixtures/recorded/languages/java/changeIfState.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeIfState.yml rename to resources/fixtures/recorded/languages/java/changeIfState.yml diff --git a/data/fixtures/recorded/languages/java/changeName.yml b/resources/fixtures/recorded/languages/java/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeName.yml rename to resources/fixtures/recorded/languages/java/changeName.yml diff --git a/data/fixtures/recorded/languages/java/changeType.yml b/resources/fixtures/recorded/languages/java/changeType.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeType.yml rename to resources/fixtures/recorded/languages/java/changeType.yml diff --git a/data/fixtures/recorded/languages/java/changeType2.yml b/resources/fixtures/recorded/languages/java/changeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeType2.yml rename to resources/fixtures/recorded/languages/java/changeType2.yml diff --git a/data/fixtures/recorded/languages/java/changeType3.yml b/resources/fixtures/recorded/languages/java/changeType3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeType3.yml rename to resources/fixtures/recorded/languages/java/changeType3.yml diff --git a/data/fixtures/recorded/languages/java/changeType4.yml b/resources/fixtures/recorded/languages/java/changeType4.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeType4.yml rename to resources/fixtures/recorded/languages/java/changeType4.yml diff --git a/data/fixtures/recorded/languages/java/changeType5.yml b/resources/fixtures/recorded/languages/java/changeType5.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeType5.yml rename to resources/fixtures/recorded/languages/java/changeType5.yml diff --git a/data/fixtures/recorded/languages/java/changeType6.yml b/resources/fixtures/recorded/languages/java/changeType6.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeType6.yml rename to resources/fixtures/recorded/languages/java/changeType6.yml diff --git a/data/fixtures/recorded/languages/java/changeValue.yml b/resources/fixtures/recorded/languages/java/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeValue.yml rename to resources/fixtures/recorded/languages/java/changeValue.yml diff --git a/data/fixtures/recorded/languages/java/changeValue3.yml b/resources/fixtures/recorded/languages/java/changeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeValue3.yml rename to resources/fixtures/recorded/languages/java/changeValue3.yml diff --git a/data/fixtures/recorded/languages/java/changeValue4.yml b/resources/fixtures/recorded/languages/java/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/java/changeValue4.yml rename to resources/fixtures/recorded/languages/java/changeValue4.yml diff --git a/data/fixtures/recorded/languages/java/chuckBranch.yml b/resources/fixtures/recorded/languages/java/chuckBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/java/chuckBranch.yml rename to resources/fixtures/recorded/languages/java/chuckBranch.yml diff --git a/data/fixtures/recorded/languages/java/chuckTypeNear.yml b/resources/fixtures/recorded/languages/java/chuckTypeNear.yml similarity index 100% rename from data/fixtures/recorded/languages/java/chuckTypeNear.yml rename to resources/fixtures/recorded/languages/java/chuckTypeNear.yml diff --git a/data/fixtures/recorded/languages/java/chuckTypeUrge.yml b/resources/fixtures/recorded/languages/java/chuckTypeUrge.yml similarity index 100% rename from data/fixtures/recorded/languages/java/chuckTypeUrge.yml rename to resources/fixtures/recorded/languages/java/chuckTypeUrge.yml diff --git a/data/fixtures/recorded/languages/java/chuckValue.yml b/resources/fixtures/recorded/languages/java/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/java/chuckValue.yml rename to resources/fixtures/recorded/languages/java/chuckValue.yml diff --git a/data/fixtures/recorded/languages/java/chuckValue2.yml b/resources/fixtures/recorded/languages/java/chuckValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/chuckValue2.yml rename to resources/fixtures/recorded/languages/java/chuckValue2.yml diff --git a/data/fixtures/recorded/languages/java/chuckValue3.yml b/resources/fixtures/recorded/languages/java/chuckValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/chuckValue3.yml rename to resources/fixtures/recorded/languages/java/chuckValue3.yml diff --git a/data/fixtures/recorded/languages/java/clearBranch.yml b/resources/fixtures/recorded/languages/java/clearBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearBranch.yml rename to resources/fixtures/recorded/languages/java/clearBranch.yml diff --git a/data/fixtures/recorded/languages/java/clearBranch2.yml b/resources/fixtures/recorded/languages/java/clearBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearBranch2.yml rename to resources/fixtures/recorded/languages/java/clearBranch2.yml diff --git a/data/fixtures/recorded/languages/java/clearComment.yml b/resources/fixtures/recorded/languages/java/clearComment.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearComment.yml rename to resources/fixtures/recorded/languages/java/clearComment.yml diff --git a/data/fixtures/recorded/languages/java/clearName.yml b/resources/fixtures/recorded/languages/java/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearName.yml rename to resources/fixtures/recorded/languages/java/clearName.yml diff --git a/data/fixtures/recorded/languages/java/clearName2.yml b/resources/fixtures/recorded/languages/java/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearName2.yml rename to resources/fixtures/recorded/languages/java/clearName2.yml diff --git a/data/fixtures/recorded/languages/java/clearState.yml b/resources/fixtures/recorded/languages/java/clearState.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearState.yml rename to resources/fixtures/recorded/languages/java/clearState.yml diff --git a/data/fixtures/recorded/languages/java/clearState2.yml b/resources/fixtures/recorded/languages/java/clearState2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearState2.yml rename to resources/fixtures/recorded/languages/java/clearState2.yml diff --git a/data/fixtures/recorded/languages/java/clearState3.yml b/resources/fixtures/recorded/languages/java/clearState3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearState3.yml rename to resources/fixtures/recorded/languages/java/clearState3.yml diff --git a/data/fixtures/recorded/languages/java/clearState4.yml b/resources/fixtures/recorded/languages/java/clearState4.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearState4.yml rename to resources/fixtures/recorded/languages/java/clearState4.yml diff --git a/data/fixtures/recorded/languages/java/clearState5.yml b/resources/fixtures/recorded/languages/java/clearState5.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearState5.yml rename to resources/fixtures/recorded/languages/java/clearState5.yml diff --git a/data/fixtures/recorded/languages/java/clearState6.yml b/resources/fixtures/recorded/languages/java/clearState6.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearState6.yml rename to resources/fixtures/recorded/languages/java/clearState6.yml diff --git a/data/fixtures/recorded/languages/java/clearState7.yml b/resources/fixtures/recorded/languages/java/clearState7.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearState7.yml rename to resources/fixtures/recorded/languages/java/clearState7.yml diff --git a/data/fixtures/recorded/languages/java/clearSubject.yml b/resources/fixtures/recorded/languages/java/clearSubject.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearSubject.yml rename to resources/fixtures/recorded/languages/java/clearSubject.yml diff --git a/data/fixtures/recorded/languages/java/clearSubject2.yml b/resources/fixtures/recorded/languages/java/clearSubject2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearSubject2.yml rename to resources/fixtures/recorded/languages/java/clearSubject2.yml diff --git a/data/fixtures/recorded/languages/java/clearTypeGust.yml b/resources/fixtures/recorded/languages/java/clearTypeGust.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearTypeGust.yml rename to resources/fixtures/recorded/languages/java/clearTypeGust.yml diff --git a/data/fixtures/recorded/languages/java/clearTypeGust2.yml b/resources/fixtures/recorded/languages/java/clearTypeGust2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearTypeGust2.yml rename to resources/fixtures/recorded/languages/java/clearTypeGust2.yml diff --git a/data/fixtures/recorded/languages/java/clearTypeSoon.yml b/resources/fixtures/recorded/languages/java/clearTypeSoon.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearTypeSoon.yml rename to resources/fixtures/recorded/languages/java/clearTypeSoon.yml diff --git a/data/fixtures/recorded/languages/java/clearTypeSoon2.yml b/resources/fixtures/recorded/languages/java/clearTypeSoon2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearTypeSoon2.yml rename to resources/fixtures/recorded/languages/java/clearTypeSoon2.yml diff --git a/data/fixtures/recorded/languages/java/clearTypeTrap.yml b/resources/fixtures/recorded/languages/java/clearTypeTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearTypeTrap.yml rename to resources/fixtures/recorded/languages/java/clearTypeTrap.yml diff --git a/data/fixtures/recorded/languages/java/clearTypeTrap2.yml b/resources/fixtures/recorded/languages/java/clearTypeTrap2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearTypeTrap2.yml rename to resources/fixtures/recorded/languages/java/clearTypeTrap2.yml diff --git a/data/fixtures/recorded/languages/java/clearValue.yml b/resources/fixtures/recorded/languages/java/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearValue.yml rename to resources/fixtures/recorded/languages/java/clearValue.yml diff --git a/data/fixtures/recorded/languages/java/clearValue2.yml b/resources/fixtures/recorded/languages/java/clearValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearValue2.yml rename to resources/fixtures/recorded/languages/java/clearValue2.yml diff --git a/data/fixtures/recorded/languages/java/clearValue3.yml b/resources/fixtures/recorded/languages/java/clearValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearValue3.yml rename to resources/fixtures/recorded/languages/java/clearValue3.yml diff --git a/data/fixtures/recorded/languages/java/clearValue4.yml b/resources/fixtures/recorded/languages/java/clearValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/java/clearValue4.yml rename to resources/fixtures/recorded/languages/java/clearValue4.yml diff --git a/data/fixtures/recorded/languages/java/pourBranch.yml b/resources/fixtures/recorded/languages/java/pourBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/java/pourBranch.yml rename to resources/fixtures/recorded/languages/java/pourBranch.yml diff --git a/data/fixtures/recorded/languages/java/takeArg.yml b/resources/fixtures/recorded/languages/java/takeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeArg.yml rename to resources/fixtures/recorded/languages/java/takeArg.yml diff --git a/data/fixtures/recorded/languages/java/takeArg2.yml b/resources/fixtures/recorded/languages/java/takeArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeArg2.yml rename to resources/fixtures/recorded/languages/java/takeArg2.yml diff --git a/data/fixtures/recorded/languages/java/takeCall.yml b/resources/fixtures/recorded/languages/java/takeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeCall.yml rename to resources/fixtures/recorded/languages/java/takeCall.yml diff --git a/data/fixtures/recorded/languages/java/takeClass.yml b/resources/fixtures/recorded/languages/java/takeClass.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeClass.yml rename to resources/fixtures/recorded/languages/java/takeClass.yml diff --git a/data/fixtures/recorded/languages/java/takeClassName.yml b/resources/fixtures/recorded/languages/java/takeClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeClassName.yml rename to resources/fixtures/recorded/languages/java/takeClassName.yml diff --git a/data/fixtures/recorded/languages/java/takeComment.yml b/resources/fixtures/recorded/languages/java/takeComment.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeComment.yml rename to resources/fixtures/recorded/languages/java/takeComment.yml diff --git a/data/fixtures/recorded/languages/java/takeCondition.yml b/resources/fixtures/recorded/languages/java/takeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeCondition.yml rename to resources/fixtures/recorded/languages/java/takeCondition.yml diff --git a/data/fixtures/recorded/languages/java/takeCondition2.yml b/resources/fixtures/recorded/languages/java/takeCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeCondition2.yml rename to resources/fixtures/recorded/languages/java/takeCondition2.yml diff --git a/data/fixtures/recorded/languages/java/takeCondition3.yml b/resources/fixtures/recorded/languages/java/takeCondition3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeCondition3.yml rename to resources/fixtures/recorded/languages/java/takeCondition3.yml diff --git a/data/fixtures/recorded/languages/java/takeEveryArg.yml b/resources/fixtures/recorded/languages/java/takeEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeEveryArg.yml rename to resources/fixtures/recorded/languages/java/takeEveryArg.yml diff --git a/data/fixtures/recorded/languages/java/takeEveryArg2.yml b/resources/fixtures/recorded/languages/java/takeEveryArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeEveryArg2.yml rename to resources/fixtures/recorded/languages/java/takeEveryArg2.yml diff --git a/data/fixtures/recorded/languages/java/takeEveryItem.yml b/resources/fixtures/recorded/languages/java/takeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeEveryItem.yml rename to resources/fixtures/recorded/languages/java/takeEveryItem.yml diff --git a/data/fixtures/recorded/languages/java/takeFunk.yml b/resources/fixtures/recorded/languages/java/takeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeFunk.yml rename to resources/fixtures/recorded/languages/java/takeFunk.yml diff --git a/data/fixtures/recorded/languages/java/takeFunk2.yml b/resources/fixtures/recorded/languages/java/takeFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeFunk2.yml rename to resources/fixtures/recorded/languages/java/takeFunk2.yml diff --git a/data/fixtures/recorded/languages/java/takeFunkName.yml b/resources/fixtures/recorded/languages/java/takeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeFunkName.yml rename to resources/fixtures/recorded/languages/java/takeFunkName.yml diff --git a/data/fixtures/recorded/languages/java/takeFunkName2.yml b/resources/fixtures/recorded/languages/java/takeFunkName2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeFunkName2.yml rename to resources/fixtures/recorded/languages/java/takeFunkName2.yml diff --git a/data/fixtures/recorded/languages/java/takeIf.yml b/resources/fixtures/recorded/languages/java/takeIf.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeIf.yml rename to resources/fixtures/recorded/languages/java/takeIf.yml diff --git a/data/fixtures/recorded/languages/java/takeItem.yml b/resources/fixtures/recorded/languages/java/takeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeItem.yml rename to resources/fixtures/recorded/languages/java/takeItem.yml diff --git a/data/fixtures/recorded/languages/java/takeList.yml b/resources/fixtures/recorded/languages/java/takeList.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeList.yml rename to resources/fixtures/recorded/languages/java/takeList.yml diff --git a/data/fixtures/recorded/languages/java/takeMap.yml b/resources/fixtures/recorded/languages/java/takeMap.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeMap.yml rename to resources/fixtures/recorded/languages/java/takeMap.yml diff --git a/data/fixtures/recorded/languages/java/takeName2.yml b/resources/fixtures/recorded/languages/java/takeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeName2.yml rename to resources/fixtures/recorded/languages/java/takeName2.yml diff --git a/data/fixtures/recorded/languages/java/takeName3.yml b/resources/fixtures/recorded/languages/java/takeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeName3.yml rename to resources/fixtures/recorded/languages/java/takeName3.yml diff --git a/data/fixtures/recorded/languages/java/takeState.yml b/resources/fixtures/recorded/languages/java/takeState.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeState.yml rename to resources/fixtures/recorded/languages/java/takeState.yml diff --git a/data/fixtures/recorded/languages/java/takeString.yml b/resources/fixtures/recorded/languages/java/takeString.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeString.yml rename to resources/fixtures/recorded/languages/java/takeString.yml diff --git a/data/fixtures/recorded/languages/java/takeType.yml b/resources/fixtures/recorded/languages/java/takeType.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeType.yml rename to resources/fixtures/recorded/languages/java/takeType.yml diff --git a/data/fixtures/recorded/languages/java/takeType2.yml b/resources/fixtures/recorded/languages/java/takeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeType2.yml rename to resources/fixtures/recorded/languages/java/takeType2.yml diff --git a/data/fixtures/recorded/languages/java/takeType3.yml b/resources/fixtures/recorded/languages/java/takeType3.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeType3.yml rename to resources/fixtures/recorded/languages/java/takeType3.yml diff --git a/data/fixtures/recorded/languages/java/takeType4.yml b/resources/fixtures/recorded/languages/java/takeType4.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeType4.yml rename to resources/fixtures/recorded/languages/java/takeType4.yml diff --git a/data/fixtures/recorded/languages/java/takeTypeBlueLook.yml b/resources/fixtures/recorded/languages/java/takeTypeBlueLook.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeTypeBlueLook.yml rename to resources/fixtures/recorded/languages/java/takeTypeBlueLook.yml diff --git a/data/fixtures/recorded/languages/java/takeTypeHarp.yml b/resources/fixtures/recorded/languages/java/takeTypeHarp.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeTypeHarp.yml rename to resources/fixtures/recorded/languages/java/takeTypeHarp.yml diff --git a/data/fixtures/recorded/languages/java/takeTypeLook.yml b/resources/fixtures/recorded/languages/java/takeTypeLook.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeTypeLook.yml rename to resources/fixtures/recorded/languages/java/takeTypeLook.yml diff --git a/data/fixtures/recorded/languages/java/takeTypePit.yml b/resources/fixtures/recorded/languages/java/takeTypePit.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeTypePit.yml rename to resources/fixtures/recorded/languages/java/takeTypePit.yml diff --git a/data/fixtures/recorded/languages/java/takeTypeYank.yml b/resources/fixtures/recorded/languages/java/takeTypeYank.yml similarity index 100% rename from data/fixtures/recorded/languages/java/takeTypeYank.yml rename to resources/fixtures/recorded/languages/java/takeTypeYank.yml diff --git a/data/fixtures/recorded/languages/javascript/changeEveryValue.yml b/resources/fixtures/recorded/languages/javascript/changeEveryValue.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeEveryValue.yml rename to resources/fixtures/recorded/languages/javascript/changeEveryValue.yml diff --git a/data/fixtures/recorded/languages/javascript/changeEveryValue2.yml b/resources/fixtures/recorded/languages/javascript/changeEveryValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeEveryValue2.yml rename to resources/fixtures/recorded/languages/javascript/changeEveryValue2.yml diff --git a/data/fixtures/recorded/languages/javascript/changeName.yml b/resources/fixtures/recorded/languages/javascript/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeName.yml rename to resources/fixtures/recorded/languages/javascript/changeName.yml diff --git a/data/fixtures/recorded/languages/javascript/changeName2.yml b/resources/fixtures/recorded/languages/javascript/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeName2.yml rename to resources/fixtures/recorded/languages/javascript/changeName2.yml diff --git a/data/fixtures/recorded/languages/javascript/changeName3.yml b/resources/fixtures/recorded/languages/javascript/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeName3.yml rename to resources/fixtures/recorded/languages/javascript/changeName3.yml diff --git a/data/fixtures/recorded/languages/javascript/changeName4.yml b/resources/fixtures/recorded/languages/javascript/changeName4.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeName4.yml rename to resources/fixtures/recorded/languages/javascript/changeName4.yml diff --git a/data/fixtures/recorded/languages/javascript/changeName5.yml b/resources/fixtures/recorded/languages/javascript/changeName5.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeName5.yml rename to resources/fixtures/recorded/languages/javascript/changeName5.yml diff --git a/data/fixtures/recorded/languages/javascript/changeValue.yml b/resources/fixtures/recorded/languages/javascript/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeValue.yml rename to resources/fixtures/recorded/languages/javascript/changeValue.yml diff --git a/data/fixtures/recorded/languages/javascript/changeValue2.yml b/resources/fixtures/recorded/languages/javascript/changeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeValue2.yml rename to resources/fixtures/recorded/languages/javascript/changeValue2.yml diff --git a/data/fixtures/recorded/languages/javascript/changeValue3.yml b/resources/fixtures/recorded/languages/javascript/changeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeValue3.yml rename to resources/fixtures/recorded/languages/javascript/changeValue3.yml diff --git a/data/fixtures/recorded/languages/javascript/changeValue4.yml b/resources/fixtures/recorded/languages/javascript/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeValue4.yml rename to resources/fixtures/recorded/languages/javascript/changeValue4.yml diff --git a/data/fixtures/recorded/languages/javascript/changeValue5.yml b/resources/fixtures/recorded/languages/javascript/changeValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/changeValue5.yml rename to resources/fixtures/recorded/languages/javascript/changeValue5.yml diff --git a/data/fixtures/recorded/languages/javascript/chuckName.yml b/resources/fixtures/recorded/languages/javascript/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/chuckName.yml rename to resources/fixtures/recorded/languages/javascript/chuckName.yml diff --git a/data/fixtures/recorded/languages/javascript/chuckName2.yml b/resources/fixtures/recorded/languages/javascript/chuckName2.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/chuckName2.yml rename to resources/fixtures/recorded/languages/javascript/chuckName2.yml diff --git a/data/fixtures/recorded/languages/javascript/chuckName3.yml b/resources/fixtures/recorded/languages/javascript/chuckName3.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/chuckName3.yml rename to resources/fixtures/recorded/languages/javascript/chuckName3.yml diff --git a/data/fixtures/recorded/languages/javascript/chuckValue.yml b/resources/fixtures/recorded/languages/javascript/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/chuckValue.yml rename to resources/fixtures/recorded/languages/javascript/chuckValue.yml diff --git a/data/fixtures/recorded/languages/javascript/chuckValue2.yml b/resources/fixtures/recorded/languages/javascript/chuckValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/chuckValue2.yml rename to resources/fixtures/recorded/languages/javascript/chuckValue2.yml diff --git a/data/fixtures/recorded/languages/javascript/clearCoreWhale.yml b/resources/fixtures/recorded/languages/javascript/clearCoreWhale.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearCoreWhale.yml rename to resources/fixtures/recorded/languages/javascript/clearCoreWhale.yml diff --git a/data/fixtures/recorded/languages/javascript/clearFunk.yml b/resources/fixtures/recorded/languages/javascript/clearFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearFunk.yml rename to resources/fixtures/recorded/languages/javascript/clearFunk.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName.yml b/resources/fixtures/recorded/languages/javascript/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName.yml rename to resources/fixtures/recorded/languages/javascript/clearName.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName2.yml b/resources/fixtures/recorded/languages/javascript/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName2.yml rename to resources/fixtures/recorded/languages/javascript/clearName2.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName3.yml b/resources/fixtures/recorded/languages/javascript/clearName3.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName3.yml rename to resources/fixtures/recorded/languages/javascript/clearName3.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName4.yml b/resources/fixtures/recorded/languages/javascript/clearName4.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName4.yml rename to resources/fixtures/recorded/languages/javascript/clearName4.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName5.yml b/resources/fixtures/recorded/languages/javascript/clearName5.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName5.yml rename to resources/fixtures/recorded/languages/javascript/clearName5.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName6.yml b/resources/fixtures/recorded/languages/javascript/clearName6.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName6.yml rename to resources/fixtures/recorded/languages/javascript/clearName6.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName7.yml b/resources/fixtures/recorded/languages/javascript/clearName7.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName7.yml rename to resources/fixtures/recorded/languages/javascript/clearName7.yml diff --git a/data/fixtures/recorded/languages/javascript/clearName8.yml b/resources/fixtures/recorded/languages/javascript/clearName8.yml similarity index 100% rename from data/fixtures/recorded/languages/javascript/clearName8.yml rename to resources/fixtures/recorded/languages/javascript/clearName8.yml diff --git a/data/fixtures/recorded/languages/json/takeItem.yml b/resources/fixtures/recorded/languages/json/takeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/json/takeItem.yml rename to resources/fixtures/recorded/languages/json/takeItem.yml diff --git a/data/fixtures/recorded/languages/json/takeItem2.yml b/resources/fixtures/recorded/languages/json/takeItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/json/takeItem2.yml rename to resources/fixtures/recorded/languages/json/takeItem2.yml diff --git a/data/fixtures/recorded/languages/json/takeKey.yml b/resources/fixtures/recorded/languages/json/takeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/json/takeKey.yml rename to resources/fixtures/recorded/languages/json/takeKey.yml diff --git a/data/fixtures/recorded/languages/json/takeList.yml b/resources/fixtures/recorded/languages/json/takeList.yml similarity index 100% rename from data/fixtures/recorded/languages/json/takeList.yml rename to resources/fixtures/recorded/languages/json/takeList.yml diff --git a/data/fixtures/recorded/languages/json/takeString.yml b/resources/fixtures/recorded/languages/json/takeString.yml similarity index 100% rename from data/fixtures/recorded/languages/json/takeString.yml rename to resources/fixtures/recorded/languages/json/takeString.yml diff --git a/data/fixtures/recorded/languages/json/takeValue.yml b/resources/fixtures/recorded/languages/json/takeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/json/takeValue.yml rename to resources/fixtures/recorded/languages/json/takeValue.yml diff --git a/data/fixtures/recorded/languages/jsx/changeEveryItem.yml b/resources/fixtures/recorded/languages/jsx/changeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/changeEveryItem.yml rename to resources/fixtures/recorded/languages/jsx/changeEveryItem.yml diff --git a/data/fixtures/recorded/languages/jsx/changeEveryValue.yml b/resources/fixtures/recorded/languages/jsx/changeEveryValue.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/changeEveryValue.yml rename to resources/fixtures/recorded/languages/jsx/changeEveryValue.yml diff --git a/data/fixtures/recorded/languages/jsx/changeEveryValue2.yml b/resources/fixtures/recorded/languages/jsx/changeEveryValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/changeEveryValue2.yml rename to resources/fixtures/recorded/languages/jsx/changeEveryValue2.yml diff --git a/data/fixtures/recorded/languages/jsx/changeItem.yml b/resources/fixtures/recorded/languages/jsx/changeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/changeItem.yml rename to resources/fixtures/recorded/languages/jsx/changeItem.yml diff --git a/data/fixtures/recorded/languages/jsx/chuckValue.yml b/resources/fixtures/recorded/languages/jsx/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/chuckValue.yml rename to resources/fixtures/recorded/languages/jsx/chuckValue.yml diff --git a/data/fixtures/recorded/languages/jsx/takeAttribute.yml b/resources/fixtures/recorded/languages/jsx/takeAttribute.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeAttribute.yml rename to resources/fixtures/recorded/languages/jsx/takeAttribute.yml diff --git a/data/fixtures/recorded/languages/jsx/takeElement.yml b/resources/fixtures/recorded/languages/jsx/takeElement.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeElement.yml rename to resources/fixtures/recorded/languages/jsx/takeElement.yml diff --git a/data/fixtures/recorded/languages/jsx/takeEndTag.yml b/resources/fixtures/recorded/languages/jsx/takeEndTag.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeEndTag.yml rename to resources/fixtures/recorded/languages/jsx/takeEndTag.yml diff --git a/data/fixtures/recorded/languages/jsx/takeEveryAttribute.yml b/resources/fixtures/recorded/languages/jsx/takeEveryAttribute.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeEveryAttribute.yml rename to resources/fixtures/recorded/languages/jsx/takeEveryAttribute.yml diff --git a/data/fixtures/recorded/languages/jsx/takeKey.yml b/resources/fixtures/recorded/languages/jsx/takeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeKey.yml rename to resources/fixtures/recorded/languages/jsx/takeKey.yml diff --git a/data/fixtures/recorded/languages/jsx/takeStartTag.yml b/resources/fixtures/recorded/languages/jsx/takeStartTag.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeStartTag.yml rename to resources/fixtures/recorded/languages/jsx/takeStartTag.yml diff --git a/data/fixtures/recorded/languages/jsx/takeTags.yml b/resources/fixtures/recorded/languages/jsx/takeTags.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeTags.yml rename to resources/fixtures/recorded/languages/jsx/takeTags.yml diff --git a/data/fixtures/recorded/languages/jsx/takeValue.yml b/resources/fixtures/recorded/languages/jsx/takeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/jsx/takeValue.yml rename to resources/fixtures/recorded/languages/jsx/takeValue.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg.yml b/resources/fixtures/recorded/languages/kotlin/changeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg10.yml b/resources/fixtures/recorded/languages/kotlin/changeArg10.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg10.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg10.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg11.yml b/resources/fixtures/recorded/languages/kotlin/changeArg11.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg11.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg11.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg12.yml b/resources/fixtures/recorded/languages/kotlin/changeArg12.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg12.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg12.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg13.yml b/resources/fixtures/recorded/languages/kotlin/changeArg13.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg13.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg13.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg14.yml b/resources/fixtures/recorded/languages/kotlin/changeArg14.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg14.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg14.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg15.yml b/resources/fixtures/recorded/languages/kotlin/changeArg15.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg15.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg15.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg2.yml b/resources/fixtures/recorded/languages/kotlin/changeArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg2.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg3.yml b/resources/fixtures/recorded/languages/kotlin/changeArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg3.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg4.yml b/resources/fixtures/recorded/languages/kotlin/changeArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg4.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg5.yml b/resources/fixtures/recorded/languages/kotlin/changeArg5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg5.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg6.yml b/resources/fixtures/recorded/languages/kotlin/changeArg6.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg6.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg6.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg7.yml b/resources/fixtures/recorded/languages/kotlin/changeArg7.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg7.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg7.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg8.yml b/resources/fixtures/recorded/languages/kotlin/changeArg8.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg8.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg8.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeArg9.yml b/resources/fixtures/recorded/languages/kotlin/changeArg9.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeArg9.yml rename to resources/fixtures/recorded/languages/kotlin/changeArg9.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeBranch.yml b/resources/fixtures/recorded/languages/kotlin/changeBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeBranch.yml rename to resources/fixtures/recorded/languages/kotlin/changeBranch.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeBranch2.yml b/resources/fixtures/recorded/languages/kotlin/changeBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeBranch2.yml rename to resources/fixtures/recorded/languages/kotlin/changeBranch2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeBranch3.yml b/resources/fixtures/recorded/languages/kotlin/changeBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeBranch3.yml rename to resources/fixtures/recorded/languages/kotlin/changeBranch3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeBranch4.yml b/resources/fixtures/recorded/languages/kotlin/changeBranch4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeBranch4.yml rename to resources/fixtures/recorded/languages/kotlin/changeBranch4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeBranch5.yml b/resources/fixtures/recorded/languages/kotlin/changeBranch5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeBranch5.yml rename to resources/fixtures/recorded/languages/kotlin/changeBranch5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCall.yml b/resources/fixtures/recorded/languages/kotlin/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCall.yml rename to resources/fixtures/recorded/languages/kotlin/changeCall.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCall2.yml b/resources/fixtures/recorded/languages/kotlin/changeCall2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCall2.yml rename to resources/fixtures/recorded/languages/kotlin/changeCall2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCall3.yml b/resources/fixtures/recorded/languages/kotlin/changeCall3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCall3.yml rename to resources/fixtures/recorded/languages/kotlin/changeCall3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCall4.yml b/resources/fixtures/recorded/languages/kotlin/changeCall4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCall4.yml rename to resources/fixtures/recorded/languages/kotlin/changeCall4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCall5.yml b/resources/fixtures/recorded/languages/kotlin/changeCall5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCall5.yml rename to resources/fixtures/recorded/languages/kotlin/changeCall5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCallee.yml b/resources/fixtures/recorded/languages/kotlin/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCallee.yml rename to resources/fixtures/recorded/languages/kotlin/changeCallee.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCallee2.yml b/resources/fixtures/recorded/languages/kotlin/changeCallee2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCallee2.yml rename to resources/fixtures/recorded/languages/kotlin/changeCallee2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCallee3.yml b/resources/fixtures/recorded/languages/kotlin/changeCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCallee3.yml rename to resources/fixtures/recorded/languages/kotlin/changeCallee3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCallee4.yml b/resources/fixtures/recorded/languages/kotlin/changeCallee4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCallee4.yml rename to resources/fixtures/recorded/languages/kotlin/changeCallee4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeClass.yml b/resources/fixtures/recorded/languages/kotlin/changeClass.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeClass.yml rename to resources/fixtures/recorded/languages/kotlin/changeClass.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeClass2.yml b/resources/fixtures/recorded/languages/kotlin/changeClass2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeClass2.yml rename to resources/fixtures/recorded/languages/kotlin/changeClass2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeClassName.yml b/resources/fixtures/recorded/languages/kotlin/changeClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeClassName.yml rename to resources/fixtures/recorded/languages/kotlin/changeClassName.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeClassName2.yml b/resources/fixtures/recorded/languages/kotlin/changeClassName2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeClassName2.yml rename to resources/fixtures/recorded/languages/kotlin/changeClassName2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeClassName3.yml b/resources/fixtures/recorded/languages/kotlin/changeClassName3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeClassName3.yml rename to resources/fixtures/recorded/languages/kotlin/changeClassName3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeComment.yml b/resources/fixtures/recorded/languages/kotlin/changeComment.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeComment.yml rename to resources/fixtures/recorded/languages/kotlin/changeComment.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition10.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition10.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition10.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition10.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition11.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition11.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition11.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition11.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition12.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition12.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition12.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition12.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition2.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition2.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition3.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition3.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition4.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition4.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition5.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition5.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition6.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition6.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition6.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition6.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition7.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition7.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition7.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition7.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeCondition8.yml b/resources/fixtures/recorded/languages/kotlin/changeCondition8.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeCondition8.yml rename to resources/fixtures/recorded/languages/kotlin/changeCondition8.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryArg.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryArg.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryArg.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryArg2.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryArg2.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryArg2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryArg3.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryArg3.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryArg3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryArg4.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryArg4.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryArg4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryArg5.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryArg5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryArg5.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryArg5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryBranch.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryBranch.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryBranch.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryItem.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryItem.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryItem.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryItem2.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryItem2.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryItem2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryName.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryName.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryName.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryName.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeEveryName2.yml b/resources/fixtures/recorded/languages/kotlin/changeEveryName2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeEveryName2.yml rename to resources/fixtures/recorded/languages/kotlin/changeEveryName2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeFunk.yml b/resources/fixtures/recorded/languages/kotlin/changeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeFunk.yml rename to resources/fixtures/recorded/languages/kotlin/changeFunk.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeFunk2.yml b/resources/fixtures/recorded/languages/kotlin/changeFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeFunk2.yml rename to resources/fixtures/recorded/languages/kotlin/changeFunk2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeFunkName.yml b/resources/fixtures/recorded/languages/kotlin/changeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeFunkName.yml rename to resources/fixtures/recorded/languages/kotlin/changeFunkName.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeIfState.yml b/resources/fixtures/recorded/languages/kotlin/changeIfState.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeIfState.yml rename to resources/fixtures/recorded/languages/kotlin/changeIfState.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeKey.yml b/resources/fixtures/recorded/languages/kotlin/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeKey.yml rename to resources/fixtures/recorded/languages/kotlin/changeKey.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeLambda.yml b/resources/fixtures/recorded/languages/kotlin/changeLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeLambda.yml rename to resources/fixtures/recorded/languages/kotlin/changeLambda.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeLambda2.yml b/resources/fixtures/recorded/languages/kotlin/changeLambda2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeLambda2.yml rename to resources/fixtures/recorded/languages/kotlin/changeLambda2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName.yml b/resources/fixtures/recorded/languages/kotlin/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName.yml rename to resources/fixtures/recorded/languages/kotlin/changeName.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName10.yml b/resources/fixtures/recorded/languages/kotlin/changeName10.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName10.yml rename to resources/fixtures/recorded/languages/kotlin/changeName10.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName12.yml b/resources/fixtures/recorded/languages/kotlin/changeName12.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName12.yml rename to resources/fixtures/recorded/languages/kotlin/changeName12.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName13.yml b/resources/fixtures/recorded/languages/kotlin/changeName13.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName13.yml rename to resources/fixtures/recorded/languages/kotlin/changeName13.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName2.yml b/resources/fixtures/recorded/languages/kotlin/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName2.yml rename to resources/fixtures/recorded/languages/kotlin/changeName2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName3.yml b/resources/fixtures/recorded/languages/kotlin/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName3.yml rename to resources/fixtures/recorded/languages/kotlin/changeName3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName4.yml b/resources/fixtures/recorded/languages/kotlin/changeName4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName4.yml rename to resources/fixtures/recorded/languages/kotlin/changeName4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName5.yml b/resources/fixtures/recorded/languages/kotlin/changeName5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName5.yml rename to resources/fixtures/recorded/languages/kotlin/changeName5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName6.yml b/resources/fixtures/recorded/languages/kotlin/changeName6.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName6.yml rename to resources/fixtures/recorded/languages/kotlin/changeName6.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName7.yml b/resources/fixtures/recorded/languages/kotlin/changeName7.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName7.yml rename to resources/fixtures/recorded/languages/kotlin/changeName7.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName8.yml b/resources/fixtures/recorded/languages/kotlin/changeName8.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName8.yml rename to resources/fixtures/recorded/languages/kotlin/changeName8.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeName9.yml b/resources/fixtures/recorded/languages/kotlin/changeName9.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeName9.yml rename to resources/fixtures/recorded/languages/kotlin/changeName9.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeRound.yml b/resources/fixtures/recorded/languages/kotlin/changeRound.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeRound.yml rename to resources/fixtures/recorded/languages/kotlin/changeRound.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeRound2.yml b/resources/fixtures/recorded/languages/kotlin/changeRound2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeRound2.yml rename to resources/fixtures/recorded/languages/kotlin/changeRound2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState.yml b/resources/fixtures/recorded/languages/kotlin/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState.yml rename to resources/fixtures/recorded/languages/kotlin/changeState.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState2.yml b/resources/fixtures/recorded/languages/kotlin/changeState2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState2.yml rename to resources/fixtures/recorded/languages/kotlin/changeState2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState3.yml b/resources/fixtures/recorded/languages/kotlin/changeState3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState3.yml rename to resources/fixtures/recorded/languages/kotlin/changeState3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState4.yml b/resources/fixtures/recorded/languages/kotlin/changeState4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState4.yml rename to resources/fixtures/recorded/languages/kotlin/changeState4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState5.yml b/resources/fixtures/recorded/languages/kotlin/changeState5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState5.yml rename to resources/fixtures/recorded/languages/kotlin/changeState5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState6.yml b/resources/fixtures/recorded/languages/kotlin/changeState6.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState6.yml rename to resources/fixtures/recorded/languages/kotlin/changeState6.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState7.yml b/resources/fixtures/recorded/languages/kotlin/changeState7.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState7.yml rename to resources/fixtures/recorded/languages/kotlin/changeState7.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState8.yml b/resources/fixtures/recorded/languages/kotlin/changeState8.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState8.yml rename to resources/fixtures/recorded/languages/kotlin/changeState8.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeState9.yml b/resources/fixtures/recorded/languages/kotlin/changeState9.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeState9.yml rename to resources/fixtures/recorded/languages/kotlin/changeState9.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeString.yml b/resources/fixtures/recorded/languages/kotlin/changeString.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeString.yml rename to resources/fixtures/recorded/languages/kotlin/changeString.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType.yml b/resources/fixtures/recorded/languages/kotlin/changeType.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType.yml rename to resources/fixtures/recorded/languages/kotlin/changeType.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType10.yml b/resources/fixtures/recorded/languages/kotlin/changeType10.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType10.yml rename to resources/fixtures/recorded/languages/kotlin/changeType10.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType11.yml b/resources/fixtures/recorded/languages/kotlin/changeType11.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType11.yml rename to resources/fixtures/recorded/languages/kotlin/changeType11.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType12.yml b/resources/fixtures/recorded/languages/kotlin/changeType12.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType12.yml rename to resources/fixtures/recorded/languages/kotlin/changeType12.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType13.yml b/resources/fixtures/recorded/languages/kotlin/changeType13.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType13.yml rename to resources/fixtures/recorded/languages/kotlin/changeType13.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType14.yml b/resources/fixtures/recorded/languages/kotlin/changeType14.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType14.yml rename to resources/fixtures/recorded/languages/kotlin/changeType14.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType15.yml b/resources/fixtures/recorded/languages/kotlin/changeType15.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType15.yml rename to resources/fixtures/recorded/languages/kotlin/changeType15.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType16.yml b/resources/fixtures/recorded/languages/kotlin/changeType16.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType16.yml rename to resources/fixtures/recorded/languages/kotlin/changeType16.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType17.yml b/resources/fixtures/recorded/languages/kotlin/changeType17.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType17.yml rename to resources/fixtures/recorded/languages/kotlin/changeType17.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType18.yml b/resources/fixtures/recorded/languages/kotlin/changeType18.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType18.yml rename to resources/fixtures/recorded/languages/kotlin/changeType18.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType19.yml b/resources/fixtures/recorded/languages/kotlin/changeType19.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType19.yml rename to resources/fixtures/recorded/languages/kotlin/changeType19.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType2.yml b/resources/fixtures/recorded/languages/kotlin/changeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType2.yml rename to resources/fixtures/recorded/languages/kotlin/changeType2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType20.yml b/resources/fixtures/recorded/languages/kotlin/changeType20.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType20.yml rename to resources/fixtures/recorded/languages/kotlin/changeType20.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType21.yml b/resources/fixtures/recorded/languages/kotlin/changeType21.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType21.yml rename to resources/fixtures/recorded/languages/kotlin/changeType21.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType22.yml b/resources/fixtures/recorded/languages/kotlin/changeType22.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType22.yml rename to resources/fixtures/recorded/languages/kotlin/changeType22.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType23.yml b/resources/fixtures/recorded/languages/kotlin/changeType23.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType23.yml rename to resources/fixtures/recorded/languages/kotlin/changeType23.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType24.yml b/resources/fixtures/recorded/languages/kotlin/changeType24.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType24.yml rename to resources/fixtures/recorded/languages/kotlin/changeType24.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType3.yml b/resources/fixtures/recorded/languages/kotlin/changeType3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType3.yml rename to resources/fixtures/recorded/languages/kotlin/changeType3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType4.yml b/resources/fixtures/recorded/languages/kotlin/changeType4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType4.yml rename to resources/fixtures/recorded/languages/kotlin/changeType4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType5.yml b/resources/fixtures/recorded/languages/kotlin/changeType5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType5.yml rename to resources/fixtures/recorded/languages/kotlin/changeType5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType6.yml b/resources/fixtures/recorded/languages/kotlin/changeType6.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType6.yml rename to resources/fixtures/recorded/languages/kotlin/changeType6.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType7.yml b/resources/fixtures/recorded/languages/kotlin/changeType7.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType7.yml rename to resources/fixtures/recorded/languages/kotlin/changeType7.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType8.yml b/resources/fixtures/recorded/languages/kotlin/changeType8.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType8.yml rename to resources/fixtures/recorded/languages/kotlin/changeType8.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeType9.yml b/resources/fixtures/recorded/languages/kotlin/changeType9.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeType9.yml rename to resources/fixtures/recorded/languages/kotlin/changeType9.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue.yml b/resources/fixtures/recorded/languages/kotlin/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue10.yml b/resources/fixtures/recorded/languages/kotlin/changeValue10.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue10.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue10.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue11.yml b/resources/fixtures/recorded/languages/kotlin/changeValue11.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue11.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue11.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue12.yml b/resources/fixtures/recorded/languages/kotlin/changeValue12.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue12.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue12.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue13.yml b/resources/fixtures/recorded/languages/kotlin/changeValue13.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue13.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue13.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue2.yml b/resources/fixtures/recorded/languages/kotlin/changeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue2.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue2.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue3.yml b/resources/fixtures/recorded/languages/kotlin/changeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue3.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue3.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue4.yml b/resources/fixtures/recorded/languages/kotlin/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue4.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue4.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue5.yml b/resources/fixtures/recorded/languages/kotlin/changeValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue5.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue5.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue6.yml b/resources/fixtures/recorded/languages/kotlin/changeValue6.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue6.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue6.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue7.yml b/resources/fixtures/recorded/languages/kotlin/changeValue7.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue7.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue7.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue8.yml b/resources/fixtures/recorded/languages/kotlin/changeValue8.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue8.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue8.yml diff --git a/data/fixtures/recorded/languages/kotlin/changeValue9.yml b/resources/fixtures/recorded/languages/kotlin/changeValue9.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/changeValue9.yml rename to resources/fixtures/recorded/languages/kotlin/changeValue9.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg2.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg2.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg2.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg3.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg3.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg3.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg4.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg4.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg4.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg5.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg5.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg5.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg5.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg6.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg6.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg6.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg6.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg7.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg7.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg7.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg7.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg8.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg8.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg8.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg8.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckArg9.yml b/resources/fixtures/recorded/languages/kotlin/chuckArg9.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckArg9.yml rename to resources/fixtures/recorded/languages/kotlin/chuckArg9.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckBranch.yml b/resources/fixtures/recorded/languages/kotlin/chuckBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckBranch.yml rename to resources/fixtures/recorded/languages/kotlin/chuckBranch.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckItem.yml b/resources/fixtures/recorded/languages/kotlin/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckItem.yml rename to resources/fixtures/recorded/languages/kotlin/chuckItem.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckItem2.yml b/resources/fixtures/recorded/languages/kotlin/chuckItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckItem2.yml rename to resources/fixtures/recorded/languages/kotlin/chuckItem2.yml diff --git a/data/fixtures/recorded/languages/kotlin/chuckItem3.yml b/resources/fixtures/recorded/languages/kotlin/chuckItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/chuckItem3.yml rename to resources/fixtures/recorded/languages/kotlin/chuckItem3.yml diff --git a/data/fixtures/recorded/languages/kotlin/drinkArg.yml b/resources/fixtures/recorded/languages/kotlin/drinkArg.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/drinkArg.yml rename to resources/fixtures/recorded/languages/kotlin/drinkArg.yml diff --git a/data/fixtures/recorded/languages/kotlin/drinkArg2.yml b/resources/fixtures/recorded/languages/kotlin/drinkArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/drinkArg2.yml rename to resources/fixtures/recorded/languages/kotlin/drinkArg2.yml diff --git a/data/fixtures/recorded/languages/kotlin/drinkArg3.yml b/resources/fixtures/recorded/languages/kotlin/drinkArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/drinkArg3.yml rename to resources/fixtures/recorded/languages/kotlin/drinkArg3.yml diff --git a/data/fixtures/recorded/languages/kotlin/drinkArg4.yml b/resources/fixtures/recorded/languages/kotlin/drinkArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/drinkArg4.yml rename to resources/fixtures/recorded/languages/kotlin/drinkArg4.yml diff --git a/data/fixtures/recorded/languages/kotlin/pourArg.yml b/resources/fixtures/recorded/languages/kotlin/pourArg.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/pourArg.yml rename to resources/fixtures/recorded/languages/kotlin/pourArg.yml diff --git a/data/fixtures/recorded/languages/kotlin/pourArg2.yml b/resources/fixtures/recorded/languages/kotlin/pourArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/pourArg2.yml rename to resources/fixtures/recorded/languages/kotlin/pourArg2.yml diff --git a/data/fixtures/recorded/languages/kotlin/pourArg3.yml b/resources/fixtures/recorded/languages/kotlin/pourArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/pourArg3.yml rename to resources/fixtures/recorded/languages/kotlin/pourArg3.yml diff --git a/data/fixtures/recorded/languages/kotlin/pourArg4.yml b/resources/fixtures/recorded/languages/kotlin/pourArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/kotlin/pourArg4.yml rename to resources/fixtures/recorded/languages/kotlin/pourArg4.yml diff --git a/data/fixtures/recorded/languages/latex/changeArg.yml b/resources/fixtures/recorded/languages/latex/changeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeArg.yml rename to resources/fixtures/recorded/languages/latex/changeArg.yml diff --git a/data/fixtures/recorded/languages/latex/changeArg2.yml b/resources/fixtures/recorded/languages/latex/changeArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeArg2.yml rename to resources/fixtures/recorded/languages/latex/changeArg2.yml diff --git a/data/fixtures/recorded/languages/latex/changeArg3.yml b/resources/fixtures/recorded/languages/latex/changeArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeArg3.yml rename to resources/fixtures/recorded/languages/latex/changeArg3.yml diff --git a/data/fixtures/recorded/languages/latex/changeArg4.yml b/resources/fixtures/recorded/languages/latex/changeArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeArg4.yml rename to resources/fixtures/recorded/languages/latex/changeArg4.yml diff --git a/data/fixtures/recorded/languages/latex/changeArg5.yml b/resources/fixtures/recorded/languages/latex/changeArg5.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeArg5.yml rename to resources/fixtures/recorded/languages/latex/changeArg5.yml diff --git a/data/fixtures/recorded/languages/latex/changeCall.yml b/resources/fixtures/recorded/languages/latex/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeCall.yml rename to resources/fixtures/recorded/languages/latex/changeCall.yml diff --git a/data/fixtures/recorded/languages/latex/changeCall2.yml b/resources/fixtures/recorded/languages/latex/changeCall2.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeCall2.yml rename to resources/fixtures/recorded/languages/latex/changeCall2.yml diff --git a/data/fixtures/recorded/languages/latex/changeCall3.yml b/resources/fixtures/recorded/languages/latex/changeCall3.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeCall3.yml rename to resources/fixtures/recorded/languages/latex/changeCall3.yml diff --git a/data/fixtures/recorded/languages/latex/changeCall4.yml b/resources/fixtures/recorded/languages/latex/changeCall4.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeCall4.yml rename to resources/fixtures/recorded/languages/latex/changeCall4.yml diff --git a/data/fixtures/recorded/languages/latex/changeCall5.yml b/resources/fixtures/recorded/languages/latex/changeCall5.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeCall5.yml rename to resources/fixtures/recorded/languages/latex/changeCall5.yml diff --git a/data/fixtures/recorded/languages/latex/changeCallee.yml b/resources/fixtures/recorded/languages/latex/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeCallee.yml rename to resources/fixtures/recorded/languages/latex/changeCallee.yml diff --git a/data/fixtures/recorded/languages/latex/changeChapter.yml b/resources/fixtures/recorded/languages/latex/changeChapter.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeChapter.yml rename to resources/fixtures/recorded/languages/latex/changeChapter.yml diff --git a/data/fixtures/recorded/languages/latex/changeCurly.yml b/resources/fixtures/recorded/languages/latex/changeCurly.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeCurly.yml rename to resources/fixtures/recorded/languages/latex/changeCurly.yml diff --git a/data/fixtures/recorded/languages/latex/changeEnvironment.yml b/resources/fixtures/recorded/languages/latex/changeEnvironment.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeEnvironment.yml rename to resources/fixtures/recorded/languages/latex/changeEnvironment.yml diff --git a/data/fixtures/recorded/languages/latex/changeEveryArg.yml b/resources/fixtures/recorded/languages/latex/changeEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeEveryArg.yml rename to resources/fixtures/recorded/languages/latex/changeEveryArg.yml diff --git a/data/fixtures/recorded/languages/latex/changeEveryItem.yml b/resources/fixtures/recorded/languages/latex/changeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeEveryItem.yml rename to resources/fixtures/recorded/languages/latex/changeEveryItem.yml diff --git a/data/fixtures/recorded/languages/latex/changeItem.yml b/resources/fixtures/recorded/languages/latex/changeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeItem.yml rename to resources/fixtures/recorded/languages/latex/changeItem.yml diff --git a/data/fixtures/recorded/languages/latex/changeName.yml b/resources/fixtures/recorded/languages/latex/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeName.yml rename to resources/fixtures/recorded/languages/latex/changeName.yml diff --git a/data/fixtures/recorded/languages/latex/changeName2.yml b/resources/fixtures/recorded/languages/latex/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeName2.yml rename to resources/fixtures/recorded/languages/latex/changeName2.yml diff --git a/data/fixtures/recorded/languages/latex/changeName3.yml b/resources/fixtures/recorded/languages/latex/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeName3.yml rename to resources/fixtures/recorded/languages/latex/changeName3.yml diff --git a/data/fixtures/recorded/languages/latex/changeParagraph.yml b/resources/fixtures/recorded/languages/latex/changeParagraph.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeParagraph.yml rename to resources/fixtures/recorded/languages/latex/changeParagraph.yml diff --git a/data/fixtures/recorded/languages/latex/changePart.yml b/resources/fixtures/recorded/languages/latex/changePart.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changePart.yml rename to resources/fixtures/recorded/languages/latex/changePart.yml diff --git a/data/fixtures/recorded/languages/latex/changeSection.yml b/resources/fixtures/recorded/languages/latex/changeSection.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeSection.yml rename to resources/fixtures/recorded/languages/latex/changeSection.yml diff --git a/data/fixtures/recorded/languages/latex/changeSubparagraph.yml b/resources/fixtures/recorded/languages/latex/changeSubparagraph.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeSubparagraph.yml rename to resources/fixtures/recorded/languages/latex/changeSubparagraph.yml diff --git a/data/fixtures/recorded/languages/latex/changeSubsection.yml b/resources/fixtures/recorded/languages/latex/changeSubsection.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeSubsection.yml rename to resources/fixtures/recorded/languages/latex/changeSubsection.yml diff --git a/data/fixtures/recorded/languages/latex/changeSubsubsection.yml b/resources/fixtures/recorded/languages/latex/changeSubsubsection.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/changeSubsubsection.yml rename to resources/fixtures/recorded/languages/latex/changeSubsubsection.yml diff --git a/data/fixtures/recorded/languages/latex/chuckArg.yml b/resources/fixtures/recorded/languages/latex/chuckArg.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/chuckArg.yml rename to resources/fixtures/recorded/languages/latex/chuckArg.yml diff --git a/data/fixtures/recorded/languages/latex/chuckArg2.yml b/resources/fixtures/recorded/languages/latex/chuckArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/chuckArg2.yml rename to resources/fixtures/recorded/languages/latex/chuckArg2.yml diff --git a/data/fixtures/recorded/languages/latex/chuckArg3.yml b/resources/fixtures/recorded/languages/latex/chuckArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/chuckArg3.yml rename to resources/fixtures/recorded/languages/latex/chuckArg3.yml diff --git a/data/fixtures/recorded/languages/latex/chuckArg4.yml b/resources/fixtures/recorded/languages/latex/chuckArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/chuckArg4.yml rename to resources/fixtures/recorded/languages/latex/chuckArg4.yml diff --git a/data/fixtures/recorded/languages/latex/chuckEveryItem.yml b/resources/fixtures/recorded/languages/latex/chuckEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/chuckEveryItem.yml rename to resources/fixtures/recorded/languages/latex/chuckEveryItem.yml diff --git a/data/fixtures/recorded/languages/latex/chuckItem.yml b/resources/fixtures/recorded/languages/latex/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/chuckItem.yml rename to resources/fixtures/recorded/languages/latex/chuckItem.yml diff --git a/data/fixtures/recorded/languages/latex/chuckName.yml b/resources/fixtures/recorded/languages/latex/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/chuckName.yml rename to resources/fixtures/recorded/languages/latex/chuckName.yml diff --git a/data/fixtures/recorded/languages/latex/clearName.yml b/resources/fixtures/recorded/languages/latex/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/clearName.yml rename to resources/fixtures/recorded/languages/latex/clearName.yml diff --git a/data/fixtures/recorded/languages/latex/clearName2.yml b/resources/fixtures/recorded/languages/latex/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/clearName2.yml rename to resources/fixtures/recorded/languages/latex/clearName2.yml diff --git a/data/fixtures/recorded/languages/latex/clearRound.yml b/resources/fixtures/recorded/languages/latex/clearRound.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/clearRound.yml rename to resources/fixtures/recorded/languages/latex/clearRound.yml diff --git a/data/fixtures/recorded/languages/latex/pourChapter.yml b/resources/fixtures/recorded/languages/latex/pourChapter.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/pourChapter.yml rename to resources/fixtures/recorded/languages/latex/pourChapter.yml diff --git a/data/fixtures/recorded/languages/latex/pourParagraph.yml b/resources/fixtures/recorded/languages/latex/pourParagraph.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/pourParagraph.yml rename to resources/fixtures/recorded/languages/latex/pourParagraph.yml diff --git a/data/fixtures/recorded/languages/latex/pourPart.yml b/resources/fixtures/recorded/languages/latex/pourPart.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/pourPart.yml rename to resources/fixtures/recorded/languages/latex/pourPart.yml diff --git a/data/fixtures/recorded/languages/latex/pourSection.yml b/resources/fixtures/recorded/languages/latex/pourSection.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/pourSection.yml rename to resources/fixtures/recorded/languages/latex/pourSection.yml diff --git a/data/fixtures/recorded/languages/latex/pourSubparagraph.yml b/resources/fixtures/recorded/languages/latex/pourSubparagraph.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/pourSubparagraph.yml rename to resources/fixtures/recorded/languages/latex/pourSubparagraph.yml diff --git a/data/fixtures/recorded/languages/latex/pourSubsection.yml b/resources/fixtures/recorded/languages/latex/pourSubsection.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/pourSubsection.yml rename to resources/fixtures/recorded/languages/latex/pourSubsection.yml diff --git a/data/fixtures/recorded/languages/latex/pourSubsubsection.yml b/resources/fixtures/recorded/languages/latex/pourSubsubsection.yml similarity index 100% rename from data/fixtures/recorded/languages/latex/pourSubsubsection.yml rename to resources/fixtures/recorded/languages/latex/pourSubsubsection.yml diff --git a/data/fixtures/recorded/languages/lua/bringArgAirAfterBat.yml b/resources/fixtures/recorded/languages/lua/bringArgAirAfterBat.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/bringArgAirAfterBat.yml rename to resources/fixtures/recorded/languages/lua/bringArgAirAfterBat.yml diff --git a/data/fixtures/recorded/languages/lua/changeArg.yml b/resources/fixtures/recorded/languages/lua/changeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeArg.yml rename to resources/fixtures/recorded/languages/lua/changeArg.yml diff --git a/data/fixtures/recorded/languages/lua/changeArg2.yml b/resources/fixtures/recorded/languages/lua/changeArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeArg2.yml rename to resources/fixtures/recorded/languages/lua/changeArg2.yml diff --git a/data/fixtures/recorded/languages/lua/changeCall.yml b/resources/fixtures/recorded/languages/lua/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeCall.yml rename to resources/fixtures/recorded/languages/lua/changeCall.yml diff --git a/data/fixtures/recorded/languages/lua/changeComment.yml b/resources/fixtures/recorded/languages/lua/changeComment.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeComment.yml rename to resources/fixtures/recorded/languages/lua/changeComment.yml diff --git a/data/fixtures/recorded/languages/lua/changeComment2.yml b/resources/fixtures/recorded/languages/lua/changeComment2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeComment2.yml rename to resources/fixtures/recorded/languages/lua/changeComment2.yml diff --git a/data/fixtures/recorded/languages/lua/changeCondition.yml b/resources/fixtures/recorded/languages/lua/changeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeCondition.yml rename to resources/fixtures/recorded/languages/lua/changeCondition.yml diff --git a/data/fixtures/recorded/languages/lua/changeCondition2.yml b/resources/fixtures/recorded/languages/lua/changeCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeCondition2.yml rename to resources/fixtures/recorded/languages/lua/changeCondition2.yml diff --git a/data/fixtures/recorded/languages/lua/changeCondition3.yml b/resources/fixtures/recorded/languages/lua/changeCondition3.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeCondition3.yml rename to resources/fixtures/recorded/languages/lua/changeCondition3.yml diff --git a/data/fixtures/recorded/languages/lua/changeFunkName.yml b/resources/fixtures/recorded/languages/lua/changeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeFunkName.yml rename to resources/fixtures/recorded/languages/lua/changeFunkName.yml diff --git a/data/fixtures/recorded/languages/lua/changeIfState.yml b/resources/fixtures/recorded/languages/lua/changeIfState.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeIfState.yml rename to resources/fixtures/recorded/languages/lua/changeIfState.yml diff --git a/data/fixtures/recorded/languages/lua/changeInsideLambda.yml b/resources/fixtures/recorded/languages/lua/changeInsideLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeInsideLambda.yml rename to resources/fixtures/recorded/languages/lua/changeInsideLambda.yml diff --git a/data/fixtures/recorded/languages/lua/changeItem.yml b/resources/fixtures/recorded/languages/lua/changeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeItem.yml rename to resources/fixtures/recorded/languages/lua/changeItem.yml diff --git a/data/fixtures/recorded/languages/lua/changeKey.yml b/resources/fixtures/recorded/languages/lua/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeKey.yml rename to resources/fixtures/recorded/languages/lua/changeKey.yml diff --git a/data/fixtures/recorded/languages/lua/changeLambda.yml b/resources/fixtures/recorded/languages/lua/changeLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeLambda.yml rename to resources/fixtures/recorded/languages/lua/changeLambda.yml diff --git a/data/fixtures/recorded/languages/lua/changeList.yml b/resources/fixtures/recorded/languages/lua/changeList.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeList.yml rename to resources/fixtures/recorded/languages/lua/changeList.yml diff --git a/data/fixtures/recorded/languages/lua/changeMap.yml b/resources/fixtures/recorded/languages/lua/changeMap.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeMap.yml rename to resources/fixtures/recorded/languages/lua/changeMap.yml diff --git a/data/fixtures/recorded/languages/lua/changeName.yml b/resources/fixtures/recorded/languages/lua/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeName.yml rename to resources/fixtures/recorded/languages/lua/changeName.yml diff --git a/data/fixtures/recorded/languages/lua/changeName2.yml b/resources/fixtures/recorded/languages/lua/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeName2.yml rename to resources/fixtures/recorded/languages/lua/changeName2.yml diff --git a/data/fixtures/recorded/languages/lua/changeRound.yml b/resources/fixtures/recorded/languages/lua/changeRound.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeRound.yml rename to resources/fixtures/recorded/languages/lua/changeRound.yml diff --git a/data/fixtures/recorded/languages/lua/changeState.yml b/resources/fixtures/recorded/languages/lua/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeState.yml rename to resources/fixtures/recorded/languages/lua/changeState.yml diff --git a/data/fixtures/recorded/languages/lua/changeState2.yml b/resources/fixtures/recorded/languages/lua/changeState2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeState2.yml rename to resources/fixtures/recorded/languages/lua/changeState2.yml diff --git a/data/fixtures/recorded/languages/lua/changeState3.yml b/resources/fixtures/recorded/languages/lua/changeState3.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeState3.yml rename to resources/fixtures/recorded/languages/lua/changeState3.yml diff --git a/data/fixtures/recorded/languages/lua/changeState4.yml b/resources/fixtures/recorded/languages/lua/changeState4.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeState4.yml rename to resources/fixtures/recorded/languages/lua/changeState4.yml diff --git a/data/fixtures/recorded/languages/lua/changeString.yml b/resources/fixtures/recorded/languages/lua/changeString.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeString.yml rename to resources/fixtures/recorded/languages/lua/changeString.yml diff --git a/data/fixtures/recorded/languages/lua/changeString2.yml b/resources/fixtures/recorded/languages/lua/changeString2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeString2.yml rename to resources/fixtures/recorded/languages/lua/changeString2.yml diff --git a/data/fixtures/recorded/languages/lua/changeValue.yml b/resources/fixtures/recorded/languages/lua/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeValue.yml rename to resources/fixtures/recorded/languages/lua/changeValue.yml diff --git a/data/fixtures/recorded/languages/lua/changeValue2.yml b/resources/fixtures/recorded/languages/lua/changeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeValue2.yml rename to resources/fixtures/recorded/languages/lua/changeValue2.yml diff --git a/data/fixtures/recorded/languages/lua/changeValue3.yml b/resources/fixtures/recorded/languages/lua/changeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeValue3.yml rename to resources/fixtures/recorded/languages/lua/changeValue3.yml diff --git a/data/fixtures/recorded/languages/lua/changeValue4.yml b/resources/fixtures/recorded/languages/lua/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeValue4.yml rename to resources/fixtures/recorded/languages/lua/changeValue4.yml diff --git a/data/fixtures/recorded/languages/lua/changeValue5.yml b/resources/fixtures/recorded/languages/lua/changeValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/changeValue5.yml rename to resources/fixtures/recorded/languages/lua/changeValue5.yml diff --git a/data/fixtures/recorded/languages/lua/chuckArg.yml b/resources/fixtures/recorded/languages/lua/chuckArg.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckArg.yml rename to resources/fixtures/recorded/languages/lua/chuckArg.yml diff --git a/data/fixtures/recorded/languages/lua/chuckArg2.yml b/resources/fixtures/recorded/languages/lua/chuckArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckArg2.yml rename to resources/fixtures/recorded/languages/lua/chuckArg2.yml diff --git a/data/fixtures/recorded/languages/lua/chuckItem.yml b/resources/fixtures/recorded/languages/lua/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckItem.yml rename to resources/fixtures/recorded/languages/lua/chuckItem.yml diff --git a/data/fixtures/recorded/languages/lua/chuckItem2.yml b/resources/fixtures/recorded/languages/lua/chuckItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckItem2.yml rename to resources/fixtures/recorded/languages/lua/chuckItem2.yml diff --git a/data/fixtures/recorded/languages/lua/chuckItem3.yml b/resources/fixtures/recorded/languages/lua/chuckItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckItem3.yml rename to resources/fixtures/recorded/languages/lua/chuckItem3.yml diff --git a/data/fixtures/recorded/languages/lua/chuckKey.yml b/resources/fixtures/recorded/languages/lua/chuckKey.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckKey.yml rename to resources/fixtures/recorded/languages/lua/chuckKey.yml diff --git a/data/fixtures/recorded/languages/lua/chuckName.yml b/resources/fixtures/recorded/languages/lua/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckName.yml rename to resources/fixtures/recorded/languages/lua/chuckName.yml diff --git a/data/fixtures/recorded/languages/lua/chuckName2.yml b/resources/fixtures/recorded/languages/lua/chuckName2.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckName2.yml rename to resources/fixtures/recorded/languages/lua/chuckName2.yml diff --git a/data/fixtures/recorded/languages/lua/chuckName3.yml b/resources/fixtures/recorded/languages/lua/chuckName3.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckName3.yml rename to resources/fixtures/recorded/languages/lua/chuckName3.yml diff --git a/data/fixtures/recorded/languages/lua/chuckName4.yml b/resources/fixtures/recorded/languages/lua/chuckName4.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckName4.yml rename to resources/fixtures/recorded/languages/lua/chuckName4.yml diff --git a/data/fixtures/recorded/languages/lua/chuckValue.yml b/resources/fixtures/recorded/languages/lua/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/lua/chuckValue.yml rename to resources/fixtures/recorded/languages/lua/chuckValue.yml diff --git a/data/fixtures/recorded/languages/markdown/bringItemDrumAfterBatt.yml b/resources/fixtures/recorded/languages/markdown/bringItemDrumAfterBatt.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/bringItemDrumAfterBatt.yml rename to resources/fixtures/recorded/languages/markdown/bringItemDrumAfterBatt.yml diff --git a/data/fixtures/recorded/languages/markdown/changeCell.yml b/resources/fixtures/recorded/languages/markdown/changeCell.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeCell.yml rename to resources/fixtures/recorded/languages/markdown/changeCell.yml diff --git a/data/fixtures/recorded/languages/markdown/changeEveryItem.yml b/resources/fixtures/recorded/languages/markdown/changeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeEveryItem.yml rename to resources/fixtures/recorded/languages/markdown/changeEveryItem.yml diff --git a/data/fixtures/recorded/languages/markdown/changeEverySection.yml b/resources/fixtures/recorded/languages/markdown/changeEverySection.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeEverySection.yml rename to resources/fixtures/recorded/languages/markdown/changeEverySection.yml diff --git a/data/fixtures/recorded/languages/markdown/changeLeadingItem.yml b/resources/fixtures/recorded/languages/markdown/changeLeadingItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeLeadingItem.yml rename to resources/fixtures/recorded/languages/markdown/changeLeadingItem.yml diff --git a/data/fixtures/recorded/languages/markdown/changeName.yml b/resources/fixtures/recorded/languages/markdown/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeName.yml rename to resources/fixtures/recorded/languages/markdown/changeName.yml diff --git a/data/fixtures/recorded/languages/markdown/changeName2.yml b/resources/fixtures/recorded/languages/markdown/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeName2.yml rename to resources/fixtures/recorded/languages/markdown/changeName2.yml diff --git a/data/fixtures/recorded/languages/markdown/changeOneSection.yml b/resources/fixtures/recorded/languages/markdown/changeOneSection.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeOneSection.yml rename to resources/fixtures/recorded/languages/markdown/changeOneSection.yml diff --git a/data/fixtures/recorded/languages/markdown/changeOneSection2.yml b/resources/fixtures/recorded/languages/markdown/changeOneSection2.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeOneSection2.yml rename to resources/fixtures/recorded/languages/markdown/changeOneSection2.yml diff --git a/data/fixtures/recorded/languages/markdown/changePair.yml b/resources/fixtures/recorded/languages/markdown/changePair.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changePair.yml rename to resources/fixtures/recorded/languages/markdown/changePair.yml diff --git a/data/fixtures/recorded/languages/markdown/changeSection.yml b/resources/fixtures/recorded/languages/markdown/changeSection.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeSection.yml rename to resources/fixtures/recorded/languages/markdown/changeSection.yml diff --git a/data/fixtures/recorded/languages/markdown/changeSection2.yml b/resources/fixtures/recorded/languages/markdown/changeSection2.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeSection2.yml rename to resources/fixtures/recorded/languages/markdown/changeSection2.yml diff --git a/data/fixtures/recorded/languages/markdown/changeSection3.yml b/resources/fixtures/recorded/languages/markdown/changeSection3.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeSection3.yml rename to resources/fixtures/recorded/languages/markdown/changeSection3.yml diff --git a/data/fixtures/recorded/languages/markdown/changeSection4.yml b/resources/fixtures/recorded/languages/markdown/changeSection4.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeSection4.yml rename to resources/fixtures/recorded/languages/markdown/changeSection4.yml diff --git a/data/fixtures/recorded/languages/markdown/changeSection5.yml b/resources/fixtures/recorded/languages/markdown/changeSection5.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeSection5.yml rename to resources/fixtures/recorded/languages/markdown/changeSection5.yml diff --git a/data/fixtures/recorded/languages/markdown/changeSection6.yml b/resources/fixtures/recorded/languages/markdown/changeSection6.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeSection6.yml rename to resources/fixtures/recorded/languages/markdown/changeSection6.yml diff --git a/data/fixtures/recorded/languages/markdown/changeTrailingItem.yml b/resources/fixtures/recorded/languages/markdown/changeTrailingItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/changeTrailingItem.yml rename to resources/fixtures/recorded/languages/markdown/changeTrailingItem.yml diff --git a/data/fixtures/recorded/languages/markdown/chuckItem.yml b/resources/fixtures/recorded/languages/markdown/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/chuckItem.yml rename to resources/fixtures/recorded/languages/markdown/chuckItem.yml diff --git a/data/fixtures/recorded/languages/markdown/chuckItem2.yml b/resources/fixtures/recorded/languages/markdown/chuckItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/chuckItem2.yml rename to resources/fixtures/recorded/languages/markdown/chuckItem2.yml diff --git a/data/fixtures/recorded/languages/markdown/chuckItem3.yml b/resources/fixtures/recorded/languages/markdown/chuckItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/chuckItem3.yml rename to resources/fixtures/recorded/languages/markdown/chuckItem3.yml diff --git a/data/fixtures/recorded/languages/markdown/chuckItem4.yml b/resources/fixtures/recorded/languages/markdown/chuckItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/chuckItem4.yml rename to resources/fixtures/recorded/languages/markdown/chuckItem4.yml diff --git a/data/fixtures/recorded/languages/markdown/chuckItem5.yml b/resources/fixtures/recorded/languages/markdown/chuckItem5.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/chuckItem5.yml rename to resources/fixtures/recorded/languages/markdown/chuckItem5.yml diff --git a/data/fixtures/recorded/languages/markdown/chuckName.yml b/resources/fixtures/recorded/languages/markdown/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/chuckName.yml rename to resources/fixtures/recorded/languages/markdown/chuckName.yml diff --git a/data/fixtures/recorded/languages/markdown/clearItem.yml b/resources/fixtures/recorded/languages/markdown/clearItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/clearItem.yml rename to resources/fixtures/recorded/languages/markdown/clearItem.yml diff --git a/data/fixtures/recorded/languages/markdown/clearItem2.yml b/resources/fixtures/recorded/languages/markdown/clearItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/clearItem2.yml rename to resources/fixtures/recorded/languages/markdown/clearItem2.yml diff --git a/data/fixtures/recorded/languages/markdown/clearList.yml b/resources/fixtures/recorded/languages/markdown/clearList.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/clearList.yml rename to resources/fixtures/recorded/languages/markdown/clearList.yml diff --git a/data/fixtures/recorded/languages/markdown/cloneItem.yml b/resources/fixtures/recorded/languages/markdown/cloneItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/cloneItem.yml rename to resources/fixtures/recorded/languages/markdown/cloneItem.yml diff --git a/data/fixtures/recorded/languages/markdown/cloneUpItem.yml b/resources/fixtures/recorded/languages/markdown/cloneUpItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/cloneUpItem.yml rename to resources/fixtures/recorded/languages/markdown/cloneUpItem.yml diff --git a/data/fixtures/recorded/languages/markdown/drinkItem.yml b/resources/fixtures/recorded/languages/markdown/drinkItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/drinkItem.yml rename to resources/fixtures/recorded/languages/markdown/drinkItem.yml diff --git a/data/fixtures/recorded/languages/markdown/drinkItem2.yml b/resources/fixtures/recorded/languages/markdown/drinkItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/drinkItem2.yml rename to resources/fixtures/recorded/languages/markdown/drinkItem2.yml diff --git a/data/fixtures/recorded/languages/markdown/pourItem.yml b/resources/fixtures/recorded/languages/markdown/pourItem.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/pourItem.yml rename to resources/fixtures/recorded/languages/markdown/pourItem.yml diff --git a/data/fixtures/recorded/languages/markdown/pourItem2.yml b/resources/fixtures/recorded/languages/markdown/pourItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/pourItem2.yml rename to resources/fixtures/recorded/languages/markdown/pourItem2.yml diff --git a/data/fixtures/recorded/languages/markdown/pourItem3.yml b/resources/fixtures/recorded/languages/markdown/pourItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/pourItem3.yml rename to resources/fixtures/recorded/languages/markdown/pourItem3.yml diff --git a/data/fixtures/recorded/languages/markdown/roundWrapItemAir.yml b/resources/fixtures/recorded/languages/markdown/roundWrapItemAir.yml similarity index 100% rename from data/fixtures/recorded/languages/markdown/roundWrapItemAir.yml rename to resources/fixtures/recorded/languages/markdown/roundWrapItemAir.yml diff --git a/data/fixtures/recorded/languages/php/changeCall.yml b/resources/fixtures/recorded/languages/php/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeCall.yml rename to resources/fixtures/recorded/languages/php/changeCall.yml diff --git a/data/fixtures/recorded/languages/php/changeCall2.yml b/resources/fixtures/recorded/languages/php/changeCall2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeCall2.yml rename to resources/fixtures/recorded/languages/php/changeCall2.yml diff --git a/data/fixtures/recorded/languages/php/changeClass.yml b/resources/fixtures/recorded/languages/php/changeClass.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeClass.yml rename to resources/fixtures/recorded/languages/php/changeClass.yml diff --git a/data/fixtures/recorded/languages/php/changeClassName.yml b/resources/fixtures/recorded/languages/php/changeClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeClassName.yml rename to resources/fixtures/recorded/languages/php/changeClassName.yml diff --git a/data/fixtures/recorded/languages/php/changeEveryItem.yml b/resources/fixtures/recorded/languages/php/changeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeEveryItem.yml rename to resources/fixtures/recorded/languages/php/changeEveryItem.yml diff --git a/data/fixtures/recorded/languages/php/changeFunk.yml b/resources/fixtures/recorded/languages/php/changeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeFunk.yml rename to resources/fixtures/recorded/languages/php/changeFunk.yml diff --git a/data/fixtures/recorded/languages/php/changeFunk2.yml b/resources/fixtures/recorded/languages/php/changeFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeFunk2.yml rename to resources/fixtures/recorded/languages/php/changeFunk2.yml diff --git a/data/fixtures/recorded/languages/php/changeFunk3.yml b/resources/fixtures/recorded/languages/php/changeFunk3.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeFunk3.yml rename to resources/fixtures/recorded/languages/php/changeFunk3.yml diff --git a/data/fixtures/recorded/languages/php/changeFunk4.yml b/resources/fixtures/recorded/languages/php/changeFunk4.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeFunk4.yml rename to resources/fixtures/recorded/languages/php/changeFunk4.yml diff --git a/data/fixtures/recorded/languages/php/changeFunkName.yml b/resources/fixtures/recorded/languages/php/changeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeFunkName.yml rename to resources/fixtures/recorded/languages/php/changeFunkName.yml diff --git a/data/fixtures/recorded/languages/php/changeFunkName2.yml b/resources/fixtures/recorded/languages/php/changeFunkName2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeFunkName2.yml rename to resources/fixtures/recorded/languages/php/changeFunkName2.yml diff --git a/data/fixtures/recorded/languages/php/changeIfState.yml b/resources/fixtures/recorded/languages/php/changeIfState.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeIfState.yml rename to resources/fixtures/recorded/languages/php/changeIfState.yml diff --git a/data/fixtures/recorded/languages/php/changeItem.yml b/resources/fixtures/recorded/languages/php/changeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeItem.yml rename to resources/fixtures/recorded/languages/php/changeItem.yml diff --git a/data/fixtures/recorded/languages/php/changeItem2.yml b/resources/fixtures/recorded/languages/php/changeItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeItem2.yml rename to resources/fixtures/recorded/languages/php/changeItem2.yml diff --git a/data/fixtures/recorded/languages/php/changeItem3.yml b/resources/fixtures/recorded/languages/php/changeItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeItem3.yml rename to resources/fixtures/recorded/languages/php/changeItem3.yml diff --git a/data/fixtures/recorded/languages/php/changeItem4.yml b/resources/fixtures/recorded/languages/php/changeItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeItem4.yml rename to resources/fixtures/recorded/languages/php/changeItem4.yml diff --git a/data/fixtures/recorded/languages/php/changeItem5.yml b/resources/fixtures/recorded/languages/php/changeItem5.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeItem5.yml rename to resources/fixtures/recorded/languages/php/changeItem5.yml diff --git a/data/fixtures/recorded/languages/php/changeKey.yml b/resources/fixtures/recorded/languages/php/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeKey.yml rename to resources/fixtures/recorded/languages/php/changeKey.yml diff --git a/data/fixtures/recorded/languages/php/changeKey2.yml b/resources/fixtures/recorded/languages/php/changeKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeKey2.yml rename to resources/fixtures/recorded/languages/php/changeKey2.yml diff --git a/data/fixtures/recorded/languages/php/changeLambda.yml b/resources/fixtures/recorded/languages/php/changeLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeLambda.yml rename to resources/fixtures/recorded/languages/php/changeLambda.yml diff --git a/data/fixtures/recorded/languages/php/changeLambda2.yml b/resources/fixtures/recorded/languages/php/changeLambda2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeLambda2.yml rename to resources/fixtures/recorded/languages/php/changeLambda2.yml diff --git a/data/fixtures/recorded/languages/php/changeLambda3.yml b/resources/fixtures/recorded/languages/php/changeLambda3.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeLambda3.yml rename to resources/fixtures/recorded/languages/php/changeLambda3.yml diff --git a/data/fixtures/recorded/languages/php/changeLambda4.yml b/resources/fixtures/recorded/languages/php/changeLambda4.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeLambda4.yml rename to resources/fixtures/recorded/languages/php/changeLambda4.yml diff --git a/data/fixtures/recorded/languages/php/changeList.yml b/resources/fixtures/recorded/languages/php/changeList.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeList.yml rename to resources/fixtures/recorded/languages/php/changeList.yml diff --git a/data/fixtures/recorded/languages/php/changeName.yml b/resources/fixtures/recorded/languages/php/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeName.yml rename to resources/fixtures/recorded/languages/php/changeName.yml diff --git a/data/fixtures/recorded/languages/php/changeName2.yml b/resources/fixtures/recorded/languages/php/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeName2.yml rename to resources/fixtures/recorded/languages/php/changeName2.yml diff --git a/data/fixtures/recorded/languages/php/changeName3.yml b/resources/fixtures/recorded/languages/php/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeName3.yml rename to resources/fixtures/recorded/languages/php/changeName3.yml diff --git a/data/fixtures/recorded/languages/php/changeName4.yml b/resources/fixtures/recorded/languages/php/changeName4.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeName4.yml rename to resources/fixtures/recorded/languages/php/changeName4.yml diff --git a/data/fixtures/recorded/languages/php/changeName5.yml b/resources/fixtures/recorded/languages/php/changeName5.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeName5.yml rename to resources/fixtures/recorded/languages/php/changeName5.yml diff --git a/data/fixtures/recorded/languages/php/changeName6.yml b/resources/fixtures/recorded/languages/php/changeName6.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeName6.yml rename to resources/fixtures/recorded/languages/php/changeName6.yml diff --git a/data/fixtures/recorded/languages/php/changeState.yml b/resources/fixtures/recorded/languages/php/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeState.yml rename to resources/fixtures/recorded/languages/php/changeState.yml diff --git a/data/fixtures/recorded/languages/php/changeString.yml b/resources/fixtures/recorded/languages/php/changeString.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeString.yml rename to resources/fixtures/recorded/languages/php/changeString.yml diff --git a/data/fixtures/recorded/languages/php/changeString2.yml b/resources/fixtures/recorded/languages/php/changeString2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/changeString2.yml rename to resources/fixtures/recorded/languages/php/changeString2.yml diff --git a/data/fixtures/recorded/languages/php/chuckEveryItem.yml b/resources/fixtures/recorded/languages/php/chuckEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckEveryItem.yml rename to resources/fixtures/recorded/languages/php/chuckEveryItem.yml diff --git a/data/fixtures/recorded/languages/php/chuckFunk.yml b/resources/fixtures/recorded/languages/php/chuckFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckFunk.yml rename to resources/fixtures/recorded/languages/php/chuckFunk.yml diff --git a/data/fixtures/recorded/languages/php/chuckFunk2.yml b/resources/fixtures/recorded/languages/php/chuckFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckFunk2.yml rename to resources/fixtures/recorded/languages/php/chuckFunk2.yml diff --git a/data/fixtures/recorded/languages/php/chuckInside.yml b/resources/fixtures/recorded/languages/php/chuckInside.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckInside.yml rename to resources/fixtures/recorded/languages/php/chuckInside.yml diff --git a/data/fixtures/recorded/languages/php/chuckItem.yml b/resources/fixtures/recorded/languages/php/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckItem.yml rename to resources/fixtures/recorded/languages/php/chuckItem.yml diff --git a/data/fixtures/recorded/languages/php/chuckItem2.yml b/resources/fixtures/recorded/languages/php/chuckItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckItem2.yml rename to resources/fixtures/recorded/languages/php/chuckItem2.yml diff --git a/data/fixtures/recorded/languages/php/chuckItem3.yml b/resources/fixtures/recorded/languages/php/chuckItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckItem3.yml rename to resources/fixtures/recorded/languages/php/chuckItem3.yml diff --git a/data/fixtures/recorded/languages/php/chuckItem4.yml b/resources/fixtures/recorded/languages/php/chuckItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckItem4.yml rename to resources/fixtures/recorded/languages/php/chuckItem4.yml diff --git a/data/fixtures/recorded/languages/php/chuckItem5.yml b/resources/fixtures/recorded/languages/php/chuckItem5.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckItem5.yml rename to resources/fixtures/recorded/languages/php/chuckItem5.yml diff --git a/data/fixtures/recorded/languages/php/chuckKey.yml b/resources/fixtures/recorded/languages/php/chuckKey.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckKey.yml rename to resources/fixtures/recorded/languages/php/chuckKey.yml diff --git a/data/fixtures/recorded/languages/php/chuckKey2.yml b/resources/fixtures/recorded/languages/php/chuckKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckKey2.yml rename to resources/fixtures/recorded/languages/php/chuckKey2.yml diff --git a/data/fixtures/recorded/languages/php/chuckPair.yml b/resources/fixtures/recorded/languages/php/chuckPair.yml similarity index 100% rename from data/fixtures/recorded/languages/php/chuckPair.yml rename to resources/fixtures/recorded/languages/php/chuckPair.yml diff --git a/data/fixtures/recorded/languages/python/changeCallee.yml b/resources/fixtures/recorded/languages/python/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeCallee.yml rename to resources/fixtures/recorded/languages/python/changeCallee.yml diff --git a/data/fixtures/recorded/languages/python/changeCallee3.yml b/resources/fixtures/recorded/languages/python/changeCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeCallee3.yml rename to resources/fixtures/recorded/languages/python/changeCallee3.yml diff --git a/data/fixtures/recorded/languages/python/changeCallee4.yml b/resources/fixtures/recorded/languages/python/changeCallee4.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeCallee4.yml rename to resources/fixtures/recorded/languages/python/changeCallee4.yml diff --git a/data/fixtures/recorded/languages/python/changeCalleeParen.yml b/resources/fixtures/recorded/languages/python/changeCalleeParen.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeCalleeParen.yml rename to resources/fixtures/recorded/languages/python/changeCalleeParen.yml diff --git a/data/fixtures/recorded/languages/python/changeEveryName.yml b/resources/fixtures/recorded/languages/python/changeEveryName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeEveryName.yml rename to resources/fixtures/recorded/languages/python/changeEveryName.yml diff --git a/data/fixtures/recorded/languages/python/changeEveryName2.yml b/resources/fixtures/recorded/languages/python/changeEveryName2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeEveryName2.yml rename to resources/fixtures/recorded/languages/python/changeEveryName2.yml diff --git a/data/fixtures/recorded/languages/python/changeEveryName3.yml b/resources/fixtures/recorded/languages/python/changeEveryName3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeEveryName3.yml rename to resources/fixtures/recorded/languages/python/changeEveryName3.yml diff --git a/data/fixtures/recorded/languages/python/changeEveryType.yml b/resources/fixtures/recorded/languages/python/changeEveryType.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeEveryType.yml rename to resources/fixtures/recorded/languages/python/changeEveryType.yml diff --git a/data/fixtures/recorded/languages/python/changeEveryType2.yml b/resources/fixtures/recorded/languages/python/changeEveryType2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeEveryType2.yml rename to resources/fixtures/recorded/languages/python/changeEveryType2.yml diff --git a/data/fixtures/recorded/languages/python/changeName.yml b/resources/fixtures/recorded/languages/python/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeName.yml rename to resources/fixtures/recorded/languages/python/changeName.yml diff --git a/data/fixtures/recorded/languages/python/changeName2.yml b/resources/fixtures/recorded/languages/python/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeName2.yml rename to resources/fixtures/recorded/languages/python/changeName2.yml diff --git a/data/fixtures/recorded/languages/python/changeName3.yml b/resources/fixtures/recorded/languages/python/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeName3.yml rename to resources/fixtures/recorded/languages/python/changeName3.yml diff --git a/data/fixtures/recorded/languages/python/changeState.yml b/resources/fixtures/recorded/languages/python/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeState.yml rename to resources/fixtures/recorded/languages/python/changeState.yml diff --git a/data/fixtures/recorded/languages/python/changeType.yml b/resources/fixtures/recorded/languages/python/changeType.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeType.yml rename to resources/fixtures/recorded/languages/python/changeType.yml diff --git a/data/fixtures/recorded/languages/python/changeType2.yml b/resources/fixtures/recorded/languages/python/changeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeType2.yml rename to resources/fixtures/recorded/languages/python/changeType2.yml diff --git a/data/fixtures/recorded/languages/python/changeValue.yml b/resources/fixtures/recorded/languages/python/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeValue.yml rename to resources/fixtures/recorded/languages/python/changeValue.yml diff --git a/data/fixtures/recorded/languages/python/changeValue2.yml b/resources/fixtures/recorded/languages/python/changeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeValue2.yml rename to resources/fixtures/recorded/languages/python/changeValue2.yml diff --git a/data/fixtures/recorded/languages/python/changeValue3.yml b/resources/fixtures/recorded/languages/python/changeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeValue3.yml rename to resources/fixtures/recorded/languages/python/changeValue3.yml diff --git a/data/fixtures/recorded/languages/python/changeValue4.yml b/resources/fixtures/recorded/languages/python/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeValue4.yml rename to resources/fixtures/recorded/languages/python/changeValue4.yml diff --git a/data/fixtures/recorded/languages/python/changeValue5.yml b/resources/fixtures/recorded/languages/python/changeValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeValue5.yml rename to resources/fixtures/recorded/languages/python/changeValue5.yml diff --git a/data/fixtures/recorded/languages/python/changeValue6.yml b/resources/fixtures/recorded/languages/python/changeValue6.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeValue6.yml rename to resources/fixtures/recorded/languages/python/changeValue6.yml diff --git a/data/fixtures/recorded/languages/python/changeValue7.yml b/resources/fixtures/recorded/languages/python/changeValue7.yml similarity index 100% rename from data/fixtures/recorded/languages/python/changeValue7.yml rename to resources/fixtures/recorded/languages/python/changeValue7.yml diff --git a/data/fixtures/recorded/languages/python/chuckKey.yml b/resources/fixtures/recorded/languages/python/chuckKey.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckKey.yml rename to resources/fixtures/recorded/languages/python/chuckKey.yml diff --git a/data/fixtures/recorded/languages/python/chuckKey2.yml b/resources/fixtures/recorded/languages/python/chuckKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckKey2.yml rename to resources/fixtures/recorded/languages/python/chuckKey2.yml diff --git a/data/fixtures/recorded/languages/python/chuckName.yml b/resources/fixtures/recorded/languages/python/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckName.yml rename to resources/fixtures/recorded/languages/python/chuckName.yml diff --git a/data/fixtures/recorded/languages/python/chuckType.yml b/resources/fixtures/recorded/languages/python/chuckType.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckType.yml rename to resources/fixtures/recorded/languages/python/chuckType.yml diff --git a/data/fixtures/recorded/languages/python/chuckTypeSoon.yml b/resources/fixtures/recorded/languages/python/chuckTypeSoon.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckTypeSoon.yml rename to resources/fixtures/recorded/languages/python/chuckTypeSoon.yml diff --git a/data/fixtures/recorded/languages/python/chuckTypeTrap.yml b/resources/fixtures/recorded/languages/python/chuckTypeTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckTypeTrap.yml rename to resources/fixtures/recorded/languages/python/chuckTypeTrap.yml diff --git a/data/fixtures/recorded/languages/python/chuckValue.yml b/resources/fixtures/recorded/languages/python/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckValue.yml rename to resources/fixtures/recorded/languages/python/chuckValue.yml diff --git a/data/fixtures/recorded/languages/python/chuckValue2.yml b/resources/fixtures/recorded/languages/python/chuckValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckValue2.yml rename to resources/fixtures/recorded/languages/python/chuckValue2.yml diff --git a/data/fixtures/recorded/languages/python/chuckValue3.yml b/resources/fixtures/recorded/languages/python/chuckValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckValue3.yml rename to resources/fixtures/recorded/languages/python/chuckValue3.yml diff --git a/data/fixtures/recorded/languages/python/chuckValue4.yml b/resources/fixtures/recorded/languages/python/chuckValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckValue4.yml rename to resources/fixtures/recorded/languages/python/chuckValue4.yml diff --git a/data/fixtures/recorded/languages/python/chuckValue5.yml b/resources/fixtures/recorded/languages/python/chuckValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/python/chuckValue5.yml rename to resources/fixtures/recorded/languages/python/chuckValue5.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessAir.yml b/resources/fixtures/recorded/languages/python/clearAccessAir.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessAir.yml rename to resources/fixtures/recorded/languages/python/clearAccessAir.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessBat.yml b/resources/fixtures/recorded/languages/python/clearAccessBat.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessBat.yml rename to resources/fixtures/recorded/languages/python/clearAccessBat.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessBat3.yml b/resources/fixtures/recorded/languages/python/clearAccessBat3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessBat3.yml rename to resources/fixtures/recorded/languages/python/clearAccessBat3.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessBat5.yml b/resources/fixtures/recorded/languages/python/clearAccessBat5.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessBat5.yml rename to resources/fixtures/recorded/languages/python/clearAccessBat5.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessCap.yml b/resources/fixtures/recorded/languages/python/clearAccessCap.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessCap.yml rename to resources/fixtures/recorded/languages/python/clearAccessCap.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessCap2.yml b/resources/fixtures/recorded/languages/python/clearAccessCap2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessCap2.yml rename to resources/fixtures/recorded/languages/python/clearAccessCap2.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessCap3.yml b/resources/fixtures/recorded/languages/python/clearAccessCap3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessCap3.yml rename to resources/fixtures/recorded/languages/python/clearAccessCap3.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessDrum.yml b/resources/fixtures/recorded/languages/python/clearAccessDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessDrum.yml rename to resources/fixtures/recorded/languages/python/clearAccessDrum.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessDrum2.yml b/resources/fixtures/recorded/languages/python/clearAccessDrum2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessDrum2.yml rename to resources/fixtures/recorded/languages/python/clearAccessDrum2.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessEach.yml b/resources/fixtures/recorded/languages/python/clearAccessEach.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessEach.yml rename to resources/fixtures/recorded/languages/python/clearAccessEach.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessEach2.yml b/resources/fixtures/recorded/languages/python/clearAccessEach2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessEach2.yml rename to resources/fixtures/recorded/languages/python/clearAccessEach2.yml diff --git a/data/fixtures/recorded/languages/python/clearAccessFine.yml b/resources/fixtures/recorded/languages/python/clearAccessFine.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearAccessFine.yml rename to resources/fixtures/recorded/languages/python/clearAccessFine.yml diff --git a/data/fixtures/recorded/languages/python/clearCondition.yml b/resources/fixtures/recorded/languages/python/clearCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearCondition.yml rename to resources/fixtures/recorded/languages/python/clearCondition.yml diff --git a/data/fixtures/recorded/languages/python/clearCondition2.yml b/resources/fixtures/recorded/languages/python/clearCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearCondition2.yml rename to resources/fixtures/recorded/languages/python/clearCondition2.yml diff --git a/data/fixtures/recorded/languages/python/clearCondition3.yml b/resources/fixtures/recorded/languages/python/clearCondition3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearCondition3.yml rename to resources/fixtures/recorded/languages/python/clearCondition3.yml diff --git a/data/fixtures/recorded/languages/python/clearCondition4.yml b/resources/fixtures/recorded/languages/python/clearCondition4.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearCondition4.yml rename to resources/fixtures/recorded/languages/python/clearCondition4.yml diff --git a/data/fixtures/recorded/languages/python/clearCondition5.yml b/resources/fixtures/recorded/languages/python/clearCondition5.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearCondition5.yml rename to resources/fixtures/recorded/languages/python/clearCondition5.yml diff --git a/data/fixtures/recorded/languages/python/clearCondition6.yml b/resources/fixtures/recorded/languages/python/clearCondition6.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearCondition6.yml rename to resources/fixtures/recorded/languages/python/clearCondition6.yml diff --git a/data/fixtures/recorded/languages/python/clearEveryAccessAir.yml b/resources/fixtures/recorded/languages/python/clearEveryAccessAir.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearEveryAccessAir.yml rename to resources/fixtures/recorded/languages/python/clearEveryAccessAir.yml diff --git a/data/fixtures/recorded/languages/python/clearEveryClassName.yml b/resources/fixtures/recorded/languages/python/clearEveryClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearEveryClassName.yml rename to resources/fixtures/recorded/languages/python/clearEveryClassName.yml diff --git a/data/fixtures/recorded/languages/python/clearEveryValue.yml b/resources/fixtures/recorded/languages/python/clearEveryValue.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearEveryValue.yml rename to resources/fixtures/recorded/languages/python/clearEveryValue.yml diff --git a/data/fixtures/recorded/languages/python/clearName.yml b/resources/fixtures/recorded/languages/python/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearName.yml rename to resources/fixtures/recorded/languages/python/clearName.yml diff --git a/data/fixtures/recorded/languages/python/clearSubject.yml b/resources/fixtures/recorded/languages/python/clearSubject.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearSubject.yml rename to resources/fixtures/recorded/languages/python/clearSubject.yml diff --git a/data/fixtures/recorded/languages/python/clearValue.yml b/resources/fixtures/recorded/languages/python/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearValue.yml rename to resources/fixtures/recorded/languages/python/clearValue.yml diff --git a/data/fixtures/recorded/languages/python/clearValue2.yml b/resources/fixtures/recorded/languages/python/clearValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearValue2.yml rename to resources/fixtures/recorded/languages/python/clearValue2.yml diff --git a/data/fixtures/recorded/languages/python/clearValue3.yml b/resources/fixtures/recorded/languages/python/clearValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/clearValue3.yml rename to resources/fixtures/recorded/languages/python/clearValue3.yml diff --git a/data/fixtures/recorded/languages/python/ditchCondition.yml b/resources/fixtures/recorded/languages/python/ditchCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/python/ditchCondition.yml rename to resources/fixtures/recorded/languages/python/ditchCondition.yml diff --git a/data/fixtures/recorded/languages/python/ditchCondition2.yml b/resources/fixtures/recorded/languages/python/ditchCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/ditchCondition2.yml rename to resources/fixtures/recorded/languages/python/ditchCondition2.yml diff --git a/data/fixtures/recorded/languages/python/takeCall.yml b/resources/fixtures/recorded/languages/python/takeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeCall.yml rename to resources/fixtures/recorded/languages/python/takeCall.yml diff --git a/data/fixtures/recorded/languages/python/takeClass.yml b/resources/fixtures/recorded/languages/python/takeClass.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeClass.yml rename to resources/fixtures/recorded/languages/python/takeClass.yml diff --git a/data/fixtures/recorded/languages/python/takeClass2.yml b/resources/fixtures/recorded/languages/python/takeClass2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeClass2.yml rename to resources/fixtures/recorded/languages/python/takeClass2.yml diff --git a/data/fixtures/recorded/languages/python/takeClassName.yml b/resources/fixtures/recorded/languages/python/takeClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeClassName.yml rename to resources/fixtures/recorded/languages/python/takeClassName.yml diff --git a/data/fixtures/recorded/languages/python/takeComment.yml b/resources/fixtures/recorded/languages/python/takeComment.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeComment.yml rename to resources/fixtures/recorded/languages/python/takeComment.yml diff --git a/data/fixtures/recorded/languages/python/takeCondition.yml b/resources/fixtures/recorded/languages/python/takeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeCondition.yml rename to resources/fixtures/recorded/languages/python/takeCondition.yml diff --git a/data/fixtures/recorded/languages/python/takeCondition2.yml b/resources/fixtures/recorded/languages/python/takeCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeCondition2.yml rename to resources/fixtures/recorded/languages/python/takeCondition2.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccess.yml b/resources/fixtures/recorded/languages/python/takeEveryAccess.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccess.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccess.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessAir.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessAir.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessAir.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessAir.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessAir2.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessAir2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessAir2.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessAir2.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessBat.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessBat.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessBat.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessBat.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessBat2.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessBat2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessBat2.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessBat2.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessCap.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessCap.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessCap.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessCap.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessCap2.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessCap2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessCap2.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessCap2.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessDrum.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessDrum.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessDrum.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessDrum2.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessDrum2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessDrum2.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessDrum2.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessEach.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessEach.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessEach.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessEach.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryAccessEach2.yml b/resources/fixtures/recorded/languages/python/takeEveryAccessEach2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryAccessEach2.yml rename to resources/fixtures/recorded/languages/python/takeEveryAccessEach2.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryItem.yml b/resources/fixtures/recorded/languages/python/takeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryItem.yml rename to resources/fixtures/recorded/languages/python/takeEveryItem.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryItem2.yml b/resources/fixtures/recorded/languages/python/takeEveryItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryItem2.yml rename to resources/fixtures/recorded/languages/python/takeEveryItem2.yml diff --git a/data/fixtures/recorded/languages/python/takeEveryItem3.yml b/resources/fixtures/recorded/languages/python/takeEveryItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeEveryItem3.yml rename to resources/fixtures/recorded/languages/python/takeEveryItem3.yml diff --git a/data/fixtures/recorded/languages/python/takeFunkName.yml b/resources/fixtures/recorded/languages/python/takeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeFunkName.yml rename to resources/fixtures/recorded/languages/python/takeFunkName.yml diff --git a/data/fixtures/recorded/languages/python/takeIf.yml b/resources/fixtures/recorded/languages/python/takeIf.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeIf.yml rename to resources/fixtures/recorded/languages/python/takeIf.yml diff --git a/data/fixtures/recorded/languages/python/takeItem.yml b/resources/fixtures/recorded/languages/python/takeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeItem.yml rename to resources/fixtures/recorded/languages/python/takeItem.yml diff --git a/data/fixtures/recorded/languages/python/takeItem2.yml b/resources/fixtures/recorded/languages/python/takeItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeItem2.yml rename to resources/fixtures/recorded/languages/python/takeItem2.yml diff --git a/data/fixtures/recorded/languages/python/takeItem3.yml b/resources/fixtures/recorded/languages/python/takeItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeItem3.yml rename to resources/fixtures/recorded/languages/python/takeItem3.yml diff --git a/data/fixtures/recorded/languages/python/takeKey.yml b/resources/fixtures/recorded/languages/python/takeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeKey.yml rename to resources/fixtures/recorded/languages/python/takeKey.yml diff --git a/data/fixtures/recorded/languages/python/takeList.yml b/resources/fixtures/recorded/languages/python/takeList.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeList.yml rename to resources/fixtures/recorded/languages/python/takeList.yml diff --git a/data/fixtures/recorded/languages/python/takeList2.yml b/resources/fixtures/recorded/languages/python/takeList2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeList2.yml rename to resources/fixtures/recorded/languages/python/takeList2.yml diff --git a/data/fixtures/recorded/languages/python/takeMap.yml b/resources/fixtures/recorded/languages/python/takeMap.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeMap.yml rename to resources/fixtures/recorded/languages/python/takeMap.yml diff --git a/data/fixtures/recorded/languages/python/takeName.yml b/resources/fixtures/recorded/languages/python/takeName.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeName.yml rename to resources/fixtures/recorded/languages/python/takeName.yml diff --git a/data/fixtures/recorded/languages/python/takeName2.yml b/resources/fixtures/recorded/languages/python/takeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeName2.yml rename to resources/fixtures/recorded/languages/python/takeName2.yml diff --git a/data/fixtures/recorded/languages/python/takeName3.yml b/resources/fixtures/recorded/languages/python/takeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeName3.yml rename to resources/fixtures/recorded/languages/python/takeName3.yml diff --git a/data/fixtures/recorded/languages/python/takeState.yml b/resources/fixtures/recorded/languages/python/takeState.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeState.yml rename to resources/fixtures/recorded/languages/python/takeState.yml diff --git a/data/fixtures/recorded/languages/python/takeString.yml b/resources/fixtures/recorded/languages/python/takeString.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeString.yml rename to resources/fixtures/recorded/languages/python/takeString.yml diff --git a/data/fixtures/recorded/languages/python/takeString2.yml b/resources/fixtures/recorded/languages/python/takeString2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeString2.yml rename to resources/fixtures/recorded/languages/python/takeString2.yml diff --git a/data/fixtures/recorded/languages/python/takeString3.yml b/resources/fixtures/recorded/languages/python/takeString3.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeString3.yml rename to resources/fixtures/recorded/languages/python/takeString3.yml diff --git a/data/fixtures/recorded/languages/python/takeString4.yml b/resources/fixtures/recorded/languages/python/takeString4.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeString4.yml rename to resources/fixtures/recorded/languages/python/takeString4.yml diff --git a/data/fixtures/recorded/languages/python/takeType.yml b/resources/fixtures/recorded/languages/python/takeType.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeType.yml rename to resources/fixtures/recorded/languages/python/takeType.yml diff --git a/data/fixtures/recorded/languages/python/takeType2.yml b/resources/fixtures/recorded/languages/python/takeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeType2.yml rename to resources/fixtures/recorded/languages/python/takeType2.yml diff --git a/data/fixtures/recorded/languages/python/takeValue.yml b/resources/fixtures/recorded/languages/python/takeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeValue.yml rename to resources/fixtures/recorded/languages/python/takeValue.yml diff --git a/data/fixtures/recorded/languages/python/takeValue2.yml b/resources/fixtures/recorded/languages/python/takeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeValue2.yml rename to resources/fixtures/recorded/languages/python/takeValue2.yml diff --git a/data/fixtures/recorded/languages/python/takeValueZero.yml b/resources/fixtures/recorded/languages/python/takeValueZero.yml similarity index 100% rename from data/fixtures/recorded/languages/python/takeValueZero.yml rename to resources/fixtures/recorded/languages/python/takeValueZero.yml diff --git a/data/fixtures/recorded/languages/ruby/changeArg.yml b/resources/fixtures/recorded/languages/ruby/changeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeArg.yml rename to resources/fixtures/recorded/languages/ruby/changeArg.yml diff --git a/data/fixtures/recorded/languages/ruby/changeArgWhale.yml b/resources/fixtures/recorded/languages/ruby/changeArgWhale.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeArgWhale.yml rename to resources/fixtures/recorded/languages/ruby/changeArgWhale.yml diff --git a/data/fixtures/recorded/languages/ruby/changeArgWhale2.yml b/resources/fixtures/recorded/languages/ruby/changeArgWhale2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeArgWhale2.yml rename to resources/fixtures/recorded/languages/ruby/changeArgWhale2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeArgWhale3.yml b/resources/fixtures/recorded/languages/ruby/changeArgWhale3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeArgWhale3.yml rename to resources/fixtures/recorded/languages/ruby/changeArgWhale3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeCall.yml b/resources/fixtures/recorded/languages/ruby/changeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeCall.yml rename to resources/fixtures/recorded/languages/ruby/changeCall.yml diff --git a/data/fixtures/recorded/languages/ruby/changeClass.yml b/resources/fixtures/recorded/languages/ruby/changeClass.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeClass.yml rename to resources/fixtures/recorded/languages/ruby/changeClass.yml diff --git a/data/fixtures/recorded/languages/ruby/changeCondition.yml b/resources/fixtures/recorded/languages/ruby/changeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeCondition.yml rename to resources/fixtures/recorded/languages/ruby/changeCondition.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryArg.yml b/resources/fixtures/recorded/languages/ruby/changeEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryArg.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryArg.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryArg2.yml b/resources/fixtures/recorded/languages/ruby/changeEveryArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryArg2.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryArg2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryArg3.yml b/resources/fixtures/recorded/languages/ruby/changeEveryArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryArg3.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryArg3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryItem.yml b/resources/fixtures/recorded/languages/ruby/changeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryItem.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryItem.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryKey.yml b/resources/fixtures/recorded/languages/ruby/changeEveryKey.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryKey.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryKey.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryKey2.yml b/resources/fixtures/recorded/languages/ruby/changeEveryKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryKey2.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryKey2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryKey3.yml b/resources/fixtures/recorded/languages/ruby/changeEveryKey3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryKey3.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryKey3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeEveryKey4.yml b/resources/fixtures/recorded/languages/ruby/changeEveryKey4.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeEveryKey4.yml rename to resources/fixtures/recorded/languages/ruby/changeEveryKey4.yml diff --git a/data/fixtures/recorded/languages/ruby/changeFunk.yml b/resources/fixtures/recorded/languages/ruby/changeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeFunk.yml rename to resources/fixtures/recorded/languages/ruby/changeFunk.yml diff --git a/data/fixtures/recorded/languages/ruby/changeFunk2.yml b/resources/fixtures/recorded/languages/ruby/changeFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeFunk2.yml rename to resources/fixtures/recorded/languages/ruby/changeFunk2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeFunk3.yml b/resources/fixtures/recorded/languages/ruby/changeFunk3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeFunk3.yml rename to resources/fixtures/recorded/languages/ruby/changeFunk3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeFunk4.yml b/resources/fixtures/recorded/languages/ruby/changeFunk4.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeFunk4.yml rename to resources/fixtures/recorded/languages/ruby/changeFunk4.yml diff --git a/data/fixtures/recorded/languages/ruby/changeFunkName.yml b/resources/fixtures/recorded/languages/ruby/changeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeFunkName.yml rename to resources/fixtures/recorded/languages/ruby/changeFunkName.yml diff --git a/data/fixtures/recorded/languages/ruby/changeFunkName2.yml b/resources/fixtures/recorded/languages/ruby/changeFunkName2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeFunkName2.yml rename to resources/fixtures/recorded/languages/ruby/changeFunkName2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeFunkName3.yml b/resources/fixtures/recorded/languages/ruby/changeFunkName3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeFunkName3.yml rename to resources/fixtures/recorded/languages/ruby/changeFunkName3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeIfState.yml b/resources/fixtures/recorded/languages/ruby/changeIfState.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeIfState.yml rename to resources/fixtures/recorded/languages/ruby/changeIfState.yml diff --git a/data/fixtures/recorded/languages/ruby/changeItemThis.yml b/resources/fixtures/recorded/languages/ruby/changeItemThis.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeItemThis.yml rename to resources/fixtures/recorded/languages/ruby/changeItemThis.yml diff --git a/data/fixtures/recorded/languages/ruby/changeKey.yml b/resources/fixtures/recorded/languages/ruby/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeKey.yml rename to resources/fixtures/recorded/languages/ruby/changeKey.yml diff --git a/data/fixtures/recorded/languages/ruby/changeKey2.yml b/resources/fixtures/recorded/languages/ruby/changeKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeKey2.yml rename to resources/fixtures/recorded/languages/ruby/changeKey2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeLambda.yml b/resources/fixtures/recorded/languages/ruby/changeLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeLambda.yml rename to resources/fixtures/recorded/languages/ruby/changeLambda.yml diff --git a/data/fixtures/recorded/languages/ruby/changeLambda2.yml b/resources/fixtures/recorded/languages/ruby/changeLambda2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeLambda2.yml rename to resources/fixtures/recorded/languages/ruby/changeLambda2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeLambda3.yml b/resources/fixtures/recorded/languages/ruby/changeLambda3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeLambda3.yml rename to resources/fixtures/recorded/languages/ruby/changeLambda3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeLambda4.yml b/resources/fixtures/recorded/languages/ruby/changeLambda4.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeLambda4.yml rename to resources/fixtures/recorded/languages/ruby/changeLambda4.yml diff --git a/data/fixtures/recorded/languages/ruby/changeLambda5.yml b/resources/fixtures/recorded/languages/ruby/changeLambda5.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeLambda5.yml rename to resources/fixtures/recorded/languages/ruby/changeLambda5.yml diff --git a/data/fixtures/recorded/languages/ruby/changeList.yml b/resources/fixtures/recorded/languages/ruby/changeList.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeList.yml rename to resources/fixtures/recorded/languages/ruby/changeList.yml diff --git a/data/fixtures/recorded/languages/ruby/changeList2.yml b/resources/fixtures/recorded/languages/ruby/changeList2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeList2.yml rename to resources/fixtures/recorded/languages/ruby/changeList2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeList3.yml b/resources/fixtures/recorded/languages/ruby/changeList3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeList3.yml rename to resources/fixtures/recorded/languages/ruby/changeList3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeMap.yml b/resources/fixtures/recorded/languages/ruby/changeMap.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeMap.yml rename to resources/fixtures/recorded/languages/ruby/changeMap.yml diff --git a/data/fixtures/recorded/languages/ruby/changeName.yml b/resources/fixtures/recorded/languages/ruby/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeName.yml rename to resources/fixtures/recorded/languages/ruby/changeName.yml diff --git a/data/fixtures/recorded/languages/ruby/changeName2.yml b/resources/fixtures/recorded/languages/ruby/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeName2.yml rename to resources/fixtures/recorded/languages/ruby/changeName2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeName3.yml b/resources/fixtures/recorded/languages/ruby/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeName3.yml rename to resources/fixtures/recorded/languages/ruby/changeName3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeNameThis.yml b/resources/fixtures/recorded/languages/ruby/changeNameThis.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeNameThis.yml rename to resources/fixtures/recorded/languages/ruby/changeNameThis.yml diff --git a/data/fixtures/recorded/languages/ruby/changeRegex.yml b/resources/fixtures/recorded/languages/ruby/changeRegex.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeRegex.yml rename to resources/fixtures/recorded/languages/ruby/changeRegex.yml diff --git a/data/fixtures/recorded/languages/ruby/changeRound.yml b/resources/fixtures/recorded/languages/ruby/changeRound.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeRound.yml rename to resources/fixtures/recorded/languages/ruby/changeRound.yml diff --git a/data/fixtures/recorded/languages/ruby/changeRound2.yml b/resources/fixtures/recorded/languages/ruby/changeRound2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeRound2.yml rename to resources/fixtures/recorded/languages/ruby/changeRound2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeRound3.yml b/resources/fixtures/recorded/languages/ruby/changeRound3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeRound3.yml rename to resources/fixtures/recorded/languages/ruby/changeRound3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeState.yml b/resources/fixtures/recorded/languages/ruby/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeState.yml rename to resources/fixtures/recorded/languages/ruby/changeState.yml diff --git a/data/fixtures/recorded/languages/ruby/changeState2.yml b/resources/fixtures/recorded/languages/ruby/changeState2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeState2.yml rename to resources/fixtures/recorded/languages/ruby/changeState2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeState3.yml b/resources/fixtures/recorded/languages/ruby/changeState3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeState3.yml rename to resources/fixtures/recorded/languages/ruby/changeState3.yml diff --git a/data/fixtures/recorded/languages/ruby/changeState4.yml b/resources/fixtures/recorded/languages/ruby/changeState4.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeState4.yml rename to resources/fixtures/recorded/languages/ruby/changeState4.yml diff --git a/data/fixtures/recorded/languages/ruby/changeState5.yml b/resources/fixtures/recorded/languages/ruby/changeState5.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeState5.yml rename to resources/fixtures/recorded/languages/ruby/changeState5.yml diff --git a/data/fixtures/recorded/languages/ruby/changeString.yml b/resources/fixtures/recorded/languages/ruby/changeString.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeString.yml rename to resources/fixtures/recorded/languages/ruby/changeString.yml diff --git a/data/fixtures/recorded/languages/ruby/changeString2.yml b/resources/fixtures/recorded/languages/ruby/changeString2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeString2.yml rename to resources/fixtures/recorded/languages/ruby/changeString2.yml diff --git a/data/fixtures/recorded/languages/ruby/changeValue.yml b/resources/fixtures/recorded/languages/ruby/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/changeValue.yml rename to resources/fixtures/recorded/languages/ruby/changeValue.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckArg.yml b/resources/fixtures/recorded/languages/ruby/chuckArg.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckArg.yml rename to resources/fixtures/recorded/languages/ruby/chuckArg.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckArg2.yml b/resources/fixtures/recorded/languages/ruby/chuckArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckArg2.yml rename to resources/fixtures/recorded/languages/ruby/chuckArg2.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckArg3.yml b/resources/fixtures/recorded/languages/ruby/chuckArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckArg3.yml rename to resources/fixtures/recorded/languages/ruby/chuckArg3.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckArg4.yml b/resources/fixtures/recorded/languages/ruby/chuckArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckArg4.yml rename to resources/fixtures/recorded/languages/ruby/chuckArg4.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckEveryArg.yml b/resources/fixtures/recorded/languages/ruby/chuckEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckEveryArg.yml rename to resources/fixtures/recorded/languages/ruby/chuckEveryArg.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckEveryArg2.yml b/resources/fixtures/recorded/languages/ruby/chuckEveryArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckEveryArg2.yml rename to resources/fixtures/recorded/languages/ruby/chuckEveryArg2.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckEveryItem.yml b/resources/fixtures/recorded/languages/ruby/chuckEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckEveryItem.yml rename to resources/fixtures/recorded/languages/ruby/chuckEveryItem.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckItem.yml b/resources/fixtures/recorded/languages/ruby/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckItem.yml rename to resources/fixtures/recorded/languages/ruby/chuckItem.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckItem2.yml b/resources/fixtures/recorded/languages/ruby/chuckItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckItem2.yml rename to resources/fixtures/recorded/languages/ruby/chuckItem2.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckItem3.yml b/resources/fixtures/recorded/languages/ruby/chuckItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckItem3.yml rename to resources/fixtures/recorded/languages/ruby/chuckItem3.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckItem4.yml b/resources/fixtures/recorded/languages/ruby/chuckItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckItem4.yml rename to resources/fixtures/recorded/languages/ruby/chuckItem4.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckItem5.yml b/resources/fixtures/recorded/languages/ruby/chuckItem5.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckItem5.yml rename to resources/fixtures/recorded/languages/ruby/chuckItem5.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckItem6.yml b/resources/fixtures/recorded/languages/ruby/chuckItem6.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckItem6.yml rename to resources/fixtures/recorded/languages/ruby/chuckItem6.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckItem7.yml b/resources/fixtures/recorded/languages/ruby/chuckItem7.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckItem7.yml rename to resources/fixtures/recorded/languages/ruby/chuckItem7.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckNameThis.yml b/resources/fixtures/recorded/languages/ruby/chuckNameThis.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckNameThis.yml rename to resources/fixtures/recorded/languages/ruby/chuckNameThis.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckNameThis2.yml b/resources/fixtures/recorded/languages/ruby/chuckNameThis2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckNameThis2.yml rename to resources/fixtures/recorded/languages/ruby/chuckNameThis2.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState.yml b/resources/fixtures/recorded/languages/ruby/chuckState.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState.yml rename to resources/fixtures/recorded/languages/ruby/chuckState.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState10.yml b/resources/fixtures/recorded/languages/ruby/chuckState10.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState10.yml rename to resources/fixtures/recorded/languages/ruby/chuckState10.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState11.yml b/resources/fixtures/recorded/languages/ruby/chuckState11.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState11.yml rename to resources/fixtures/recorded/languages/ruby/chuckState11.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState2.yml b/resources/fixtures/recorded/languages/ruby/chuckState2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState2.yml rename to resources/fixtures/recorded/languages/ruby/chuckState2.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState3.yml b/resources/fixtures/recorded/languages/ruby/chuckState3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState3.yml rename to resources/fixtures/recorded/languages/ruby/chuckState3.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState4.yml b/resources/fixtures/recorded/languages/ruby/chuckState4.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState4.yml rename to resources/fixtures/recorded/languages/ruby/chuckState4.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState5.yml b/resources/fixtures/recorded/languages/ruby/chuckState5.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState5.yml rename to resources/fixtures/recorded/languages/ruby/chuckState5.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState6.yml b/resources/fixtures/recorded/languages/ruby/chuckState6.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState6.yml rename to resources/fixtures/recorded/languages/ruby/chuckState6.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState7.yml b/resources/fixtures/recorded/languages/ruby/chuckState7.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState7.yml rename to resources/fixtures/recorded/languages/ruby/chuckState7.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState8.yml b/resources/fixtures/recorded/languages/ruby/chuckState8.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState8.yml rename to resources/fixtures/recorded/languages/ruby/chuckState8.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckState9.yml b/resources/fixtures/recorded/languages/ruby/chuckState9.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckState9.yml rename to resources/fixtures/recorded/languages/ruby/chuckState9.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckValue.yml b/resources/fixtures/recorded/languages/ruby/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckValue.yml rename to resources/fixtures/recorded/languages/ruby/chuckValue.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckValue2.yml b/resources/fixtures/recorded/languages/ruby/chuckValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckValue2.yml rename to resources/fixtures/recorded/languages/ruby/chuckValue2.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckValue3.yml b/resources/fixtures/recorded/languages/ruby/chuckValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckValue3.yml rename to resources/fixtures/recorded/languages/ruby/chuckValue3.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckValue5.yml b/resources/fixtures/recorded/languages/ruby/chuckValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckValue5.yml rename to resources/fixtures/recorded/languages/ruby/chuckValue5.yml diff --git a/data/fixtures/recorded/languages/ruby/chuckValue6.yml b/resources/fixtures/recorded/languages/ruby/chuckValue6.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/chuckValue6.yml rename to resources/fixtures/recorded/languages/ruby/chuckValue6.yml diff --git a/data/fixtures/recorded/languages/ruby/clearClassName.yml b/resources/fixtures/recorded/languages/ruby/clearClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/clearClassName.yml rename to resources/fixtures/recorded/languages/ruby/clearClassName.yml diff --git a/data/fixtures/recorded/languages/ruby/clearEveryFunk.yml b/resources/fixtures/recorded/languages/ruby/clearEveryFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/clearEveryFunk.yml rename to resources/fixtures/recorded/languages/ruby/clearEveryFunk.yml diff --git a/data/fixtures/recorded/languages/ruby/clearState.yml b/resources/fixtures/recorded/languages/ruby/clearState.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/clearState.yml rename to resources/fixtures/recorded/languages/ruby/clearState.yml diff --git a/data/fixtures/recorded/languages/ruby/clearState2.yml b/resources/fixtures/recorded/languages/ruby/clearState2.yml similarity index 100% rename from data/fixtures/recorded/languages/ruby/clearState2.yml rename to resources/fixtures/recorded/languages/ruby/clearState2.yml diff --git a/data/fixtures/recorded/languages/rust/changeArgAir.yml b/resources/fixtures/recorded/languages/rust/changeArgAir.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeArgAir.yml rename to resources/fixtures/recorded/languages/rust/changeArgAir.yml diff --git a/data/fixtures/recorded/languages/rust/changeArgBlueAir.yml b/resources/fixtures/recorded/languages/rust/changeArgBlueAir.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeArgBlueAir.yml rename to resources/fixtures/recorded/languages/rust/changeArgBlueAir.yml diff --git a/data/fixtures/recorded/languages/rust/changeArgEight.yml b/resources/fixtures/recorded/languages/rust/changeArgEight.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeArgEight.yml rename to resources/fixtures/recorded/languages/rust/changeArgEight.yml diff --git a/data/fixtures/recorded/languages/rust/changeArgSun.yml b/resources/fixtures/recorded/languages/rust/changeArgSun.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeArgSun.yml rename to resources/fixtures/recorded/languages/rust/changeArgSun.yml diff --git a/data/fixtures/recorded/languages/rust/changeArgTrap.yml b/resources/fixtures/recorded/languages/rust/changeArgTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeArgTrap.yml rename to resources/fixtures/recorded/languages/rust/changeArgTrap.yml diff --git a/data/fixtures/recorded/languages/rust/changeArgTrapAndBlueTrap.yml b/resources/fixtures/recorded/languages/rust/changeArgTrapAndBlueTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeArgTrapAndBlueTrap.yml rename to resources/fixtures/recorded/languages/rust/changeArgTrapAndBlueTrap.yml diff --git a/data/fixtures/recorded/languages/rust/changeCallSun.yml b/resources/fixtures/recorded/languages/rust/changeCallSun.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeCallSun.yml rename to resources/fixtures/recorded/languages/rust/changeCallSun.yml diff --git a/data/fixtures/recorded/languages/rust/changeClass.yml b/resources/fixtures/recorded/languages/rust/changeClass.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeClass.yml rename to resources/fixtures/recorded/languages/rust/changeClass.yml diff --git a/data/fixtures/recorded/languages/rust/changeClassName.yml b/resources/fixtures/recorded/languages/rust/changeClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeClassName.yml rename to resources/fixtures/recorded/languages/rust/changeClassName.yml diff --git a/data/fixtures/recorded/languages/rust/changeFunkName.yml b/resources/fixtures/recorded/languages/rust/changeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeFunkName.yml rename to resources/fixtures/recorded/languages/rust/changeFunkName.yml diff --git a/data/fixtures/recorded/languages/rust/changeItemAir2.yml b/resources/fixtures/recorded/languages/rust/changeItemAir2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeItemAir2.yml rename to resources/fixtures/recorded/languages/rust/changeItemAir2.yml diff --git a/data/fixtures/recorded/languages/rust/changeItemNear.yml b/resources/fixtures/recorded/languages/rust/changeItemNear.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeItemNear.yml rename to resources/fixtures/recorded/languages/rust/changeItemNear.yml diff --git a/data/fixtures/recorded/languages/rust/changeItemOne.yml b/resources/fixtures/recorded/languages/rust/changeItemOne.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeItemOne.yml rename to resources/fixtures/recorded/languages/rust/changeItemOne.yml diff --git a/data/fixtures/recorded/languages/rust/changeKeyDrum.yml b/resources/fixtures/recorded/languages/rust/changeKeyDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeKeyDrum.yml rename to resources/fixtures/recorded/languages/rust/changeKeyDrum.yml diff --git a/data/fixtures/recorded/languages/rust/changeKeyJury.yml b/resources/fixtures/recorded/languages/rust/changeKeyJury.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeKeyJury.yml rename to resources/fixtures/recorded/languages/rust/changeKeyJury.yml diff --git a/data/fixtures/recorded/languages/rust/changeLambda.yml b/resources/fixtures/recorded/languages/rust/changeLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeLambda.yml rename to resources/fixtures/recorded/languages/rust/changeLambda.yml diff --git a/data/fixtures/recorded/languages/rust/changeName.yml b/resources/fixtures/recorded/languages/rust/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeName.yml rename to resources/fixtures/recorded/languages/rust/changeName.yml diff --git a/data/fixtures/recorded/languages/rust/changeName2.yml b/resources/fixtures/recorded/languages/rust/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeName2.yml rename to resources/fixtures/recorded/languages/rust/changeName2.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameDrum.yml b/resources/fixtures/recorded/languages/rust/changeNameDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameDrum.yml rename to resources/fixtures/recorded/languages/rust/changeNameDrum.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameDrum2.yml b/resources/fixtures/recorded/languages/rust/changeNameDrum2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameDrum2.yml rename to resources/fixtures/recorded/languages/rust/changeNameDrum2.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameDrum3.yml b/resources/fixtures/recorded/languages/rust/changeNameDrum3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameDrum3.yml rename to resources/fixtures/recorded/languages/rust/changeNameDrum3.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameEach.yml b/resources/fixtures/recorded/languages/rust/changeNameEach.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameEach.yml rename to resources/fixtures/recorded/languages/rust/changeNameEach.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameFine.yml b/resources/fixtures/recorded/languages/rust/changeNameFine.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameFine.yml rename to resources/fixtures/recorded/languages/rust/changeNameFine.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameFine2.yml b/resources/fixtures/recorded/languages/rust/changeNameFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameFine2.yml rename to resources/fixtures/recorded/languages/rust/changeNameFine2.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameJury.yml b/resources/fixtures/recorded/languages/rust/changeNameJury.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameJury.yml rename to resources/fixtures/recorded/languages/rust/changeNameJury.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameLook.yml b/resources/fixtures/recorded/languages/rust/changeNameLook.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameLook.yml rename to resources/fixtures/recorded/languages/rust/changeNameLook.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameNear.yml b/resources/fixtures/recorded/languages/rust/changeNameNear.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameNear.yml rename to resources/fixtures/recorded/languages/rust/changeNameNear.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameOdd.yml b/resources/fixtures/recorded/languages/rust/changeNameOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameOdd.yml rename to resources/fixtures/recorded/languages/rust/changeNameOdd.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameOdd2.yml b/resources/fixtures/recorded/languages/rust/changeNameOdd2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameOdd2.yml rename to resources/fixtures/recorded/languages/rust/changeNameOdd2.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameOdd3.yml b/resources/fixtures/recorded/languages/rust/changeNameOdd3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameOdd3.yml rename to resources/fixtures/recorded/languages/rust/changeNameOdd3.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameSun.yml b/resources/fixtures/recorded/languages/rust/changeNameSun.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameSun.yml rename to resources/fixtures/recorded/languages/rust/changeNameSun.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameSun2.yml b/resources/fixtures/recorded/languages/rust/changeNameSun2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameSun2.yml rename to resources/fixtures/recorded/languages/rust/changeNameSun2.yml diff --git a/data/fixtures/recorded/languages/rust/changeNameTrap.yml b/resources/fixtures/recorded/languages/rust/changeNameTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeNameTrap.yml rename to resources/fixtures/recorded/languages/rust/changeNameTrap.yml diff --git a/data/fixtures/recorded/languages/rust/changeRound.yml b/resources/fixtures/recorded/languages/rust/changeRound.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeRound.yml rename to resources/fixtures/recorded/languages/rust/changeRound.yml diff --git a/data/fixtures/recorded/languages/rust/changeState.yml b/resources/fixtures/recorded/languages/rust/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeState.yml rename to resources/fixtures/recorded/languages/rust/changeState.yml diff --git a/data/fixtures/recorded/languages/rust/changeState2.yml b/resources/fixtures/recorded/languages/rust/changeState2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeState2.yml rename to resources/fixtures/recorded/languages/rust/changeState2.yml diff --git a/data/fixtures/recorded/languages/rust/changeState3.yml b/resources/fixtures/recorded/languages/rust/changeState3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeState3.yml rename to resources/fixtures/recorded/languages/rust/changeState3.yml diff --git a/data/fixtures/recorded/languages/rust/changeSubject.yml b/resources/fixtures/recorded/languages/rust/changeSubject.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeSubject.yml rename to resources/fixtures/recorded/languages/rust/changeSubject.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeAir.yml b/resources/fixtures/recorded/languages/rust/changeTypeAir.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeAir.yml rename to resources/fixtures/recorded/languages/rust/changeTypeAir.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeEach.yml b/resources/fixtures/recorded/languages/rust/changeTypeEach.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeEach.yml rename to resources/fixtures/recorded/languages/rust/changeTypeEach.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeLook.yml b/resources/fixtures/recorded/languages/rust/changeTypeLook.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeLook.yml rename to resources/fixtures/recorded/languages/rust/changeTypeLook.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeOdd.yml b/resources/fixtures/recorded/languages/rust/changeTypeOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeOdd.yml rename to resources/fixtures/recorded/languages/rust/changeTypeOdd.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypePlex.yml b/resources/fixtures/recorded/languages/rust/changeTypePlex.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypePlex.yml rename to resources/fixtures/recorded/languages/rust/changeTypePlex.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypePlex2.yml b/resources/fixtures/recorded/languages/rust/changeTypePlex2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypePlex2.yml rename to resources/fixtures/recorded/languages/rust/changeTypePlex2.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeSun.yml b/resources/fixtures/recorded/languages/rust/changeTypeSun.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeSun.yml rename to resources/fixtures/recorded/languages/rust/changeTypeSun.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeSun2.yml b/resources/fixtures/recorded/languages/rust/changeTypeSun2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeSun2.yml rename to resources/fixtures/recorded/languages/rust/changeTypeSun2.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeTrap.yml b/resources/fixtures/recorded/languages/rust/changeTypeTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeTrap.yml rename to resources/fixtures/recorded/languages/rust/changeTypeTrap.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeTrap3.yml b/resources/fixtures/recorded/languages/rust/changeTypeTrap3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeTrap3.yml rename to resources/fixtures/recorded/languages/rust/changeTypeTrap3.yml diff --git a/data/fixtures/recorded/languages/rust/changeTypeUrge.yml b/resources/fixtures/recorded/languages/rust/changeTypeUrge.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeTypeUrge.yml rename to resources/fixtures/recorded/languages/rust/changeTypeUrge.yml diff --git a/data/fixtures/recorded/languages/rust/changeValueCap.yml b/resources/fixtures/recorded/languages/rust/changeValueCap.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeValueCap.yml rename to resources/fixtures/recorded/languages/rust/changeValueCap.yml diff --git a/data/fixtures/recorded/languages/rust/changeValueEach.yml b/resources/fixtures/recorded/languages/rust/changeValueEach.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeValueEach.yml rename to resources/fixtures/recorded/languages/rust/changeValueEach.yml diff --git a/data/fixtures/recorded/languages/rust/changeValueFine.yml b/resources/fixtures/recorded/languages/rust/changeValueFine.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeValueFine.yml rename to resources/fixtures/recorded/languages/rust/changeValueFine.yml diff --git a/data/fixtures/recorded/languages/rust/changeValueFine2.yml b/resources/fixtures/recorded/languages/rust/changeValueFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeValueFine2.yml rename to resources/fixtures/recorded/languages/rust/changeValueFine2.yml diff --git a/data/fixtures/recorded/languages/rust/changeValueLook.yml b/resources/fixtures/recorded/languages/rust/changeValueLook.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeValueLook.yml rename to resources/fixtures/recorded/languages/rust/changeValueLook.yml diff --git a/data/fixtures/recorded/languages/rust/changeValueNear.yml b/resources/fixtures/recorded/languages/rust/changeValueNear.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeValueNear.yml rename to resources/fixtures/recorded/languages/rust/changeValueNear.yml diff --git a/data/fixtures/recorded/languages/rust/changeValueZero.yml b/resources/fixtures/recorded/languages/rust/changeValueZero.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/changeValueZero.yml rename to resources/fixtures/recorded/languages/rust/changeValueZero.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArg.yml b/resources/fixtures/recorded/languages/rust/chuckArg.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArg.yml rename to resources/fixtures/recorded/languages/rust/chuckArg.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArg2.yml b/resources/fixtures/recorded/languages/rust/chuckArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArg2.yml rename to resources/fixtures/recorded/languages/rust/chuckArg2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgAir.yml b/resources/fixtures/recorded/languages/rust/chuckArgAir.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgAir.yml rename to resources/fixtures/recorded/languages/rust/chuckArgAir.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgBlueAir.yml b/resources/fixtures/recorded/languages/rust/chuckArgBlueAir.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgBlueAir.yml rename to resources/fixtures/recorded/languages/rust/chuckArgBlueAir.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgDrum.yml b/resources/fixtures/recorded/languages/rust/chuckArgDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgDrum.yml rename to resources/fixtures/recorded/languages/rust/chuckArgDrum.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgEight2.yml b/resources/fixtures/recorded/languages/rust/chuckArgEight2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgEight2.yml rename to resources/fixtures/recorded/languages/rust/chuckArgEight2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgOne.yml b/resources/fixtures/recorded/languages/rust/chuckArgOne.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgOne.yml rename to resources/fixtures/recorded/languages/rust/chuckArgOne.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgSun.yml b/resources/fixtures/recorded/languages/rust/chuckArgSun.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgSun.yml rename to resources/fixtures/recorded/languages/rust/chuckArgSun.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgSun2.yml b/resources/fixtures/recorded/languages/rust/chuckArgSun2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgSun2.yml rename to resources/fixtures/recorded/languages/rust/chuckArgSun2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgThree.yml b/resources/fixtures/recorded/languages/rust/chuckArgThree.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgThree.yml rename to resources/fixtures/recorded/languages/rust/chuckArgThree.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgTrap.yml b/resources/fixtures/recorded/languages/rust/chuckArgTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgTrap.yml rename to resources/fixtures/recorded/languages/rust/chuckArgTrap.yml diff --git a/data/fixtures/recorded/languages/rust/chuckArgTrap2.yml b/resources/fixtures/recorded/languages/rust/chuckArgTrap2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckArgTrap2.yml rename to resources/fixtures/recorded/languages/rust/chuckArgTrap2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckAttributeDrum.yml b/resources/fixtures/recorded/languages/rust/chuckAttributeDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckAttributeDrum.yml rename to resources/fixtures/recorded/languages/rust/chuckAttributeDrum.yml diff --git a/data/fixtures/recorded/languages/rust/chuckAttributeMade.yml b/resources/fixtures/recorded/languages/rust/chuckAttributeMade.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckAttributeMade.yml rename to resources/fixtures/recorded/languages/rust/chuckAttributeMade.yml diff --git a/data/fixtures/recorded/languages/rust/chuckAttributeMade2.yml b/resources/fixtures/recorded/languages/rust/chuckAttributeMade2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckAttributeMade2.yml rename to resources/fixtures/recorded/languages/rust/chuckAttributeMade2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckCall.yml b/resources/fixtures/recorded/languages/rust/chuckCall.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckCall.yml rename to resources/fixtures/recorded/languages/rust/chuckCall.yml diff --git a/data/fixtures/recorded/languages/rust/chuckCall2.yml b/resources/fixtures/recorded/languages/rust/chuckCall2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckCall2.yml rename to resources/fixtures/recorded/languages/rust/chuckCall2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckCallNear.yml b/resources/fixtures/recorded/languages/rust/chuckCallNear.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckCallNear.yml rename to resources/fixtures/recorded/languages/rust/chuckCallNear.yml diff --git a/data/fixtures/recorded/languages/rust/chuckClassName.yml b/resources/fixtures/recorded/languages/rust/chuckClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckClassName.yml rename to resources/fixtures/recorded/languages/rust/chuckClassName.yml diff --git a/data/fixtures/recorded/languages/rust/chuckComment.yml b/resources/fixtures/recorded/languages/rust/chuckComment.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckComment.yml rename to resources/fixtures/recorded/languages/rust/chuckComment.yml diff --git a/data/fixtures/recorded/languages/rust/chuckComment2.yml b/resources/fixtures/recorded/languages/rust/chuckComment2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckComment2.yml rename to resources/fixtures/recorded/languages/rust/chuckComment2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckCondition.yml b/resources/fixtures/recorded/languages/rust/chuckCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckCondition.yml rename to resources/fixtures/recorded/languages/rust/chuckCondition.yml diff --git a/data/fixtures/recorded/languages/rust/chuckFunkMade.yml b/resources/fixtures/recorded/languages/rust/chuckFunkMade.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckFunkMade.yml rename to resources/fixtures/recorded/languages/rust/chuckFunkMade.yml diff --git a/data/fixtures/recorded/languages/rust/chuckFunkNameFine.yml b/resources/fixtures/recorded/languages/rust/chuckFunkNameFine.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckFunkNameFine.yml rename to resources/fixtures/recorded/languages/rust/chuckFunkNameFine.yml diff --git a/data/fixtures/recorded/languages/rust/chuckItemOne.yml b/resources/fixtures/recorded/languages/rust/chuckItemOne.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckItemOne.yml rename to resources/fixtures/recorded/languages/rust/chuckItemOne.yml diff --git a/data/fixtures/recorded/languages/rust/chuckItemOne2.yml b/resources/fixtures/recorded/languages/rust/chuckItemOne2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckItemOne2.yml rename to resources/fixtures/recorded/languages/rust/chuckItemOne2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckItemSit2.yml b/resources/fixtures/recorded/languages/rust/chuckItemSit2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckItemSit2.yml rename to resources/fixtures/recorded/languages/rust/chuckItemSit2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckItemTwo.yml b/resources/fixtures/recorded/languages/rust/chuckItemTwo.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckItemTwo.yml rename to resources/fixtures/recorded/languages/rust/chuckItemTwo.yml diff --git a/data/fixtures/recorded/languages/rust/chuckItemVest.yml b/resources/fixtures/recorded/languages/rust/chuckItemVest.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckItemVest.yml rename to resources/fixtures/recorded/languages/rust/chuckItemVest.yml diff --git a/data/fixtures/recorded/languages/rust/chuckKeyAir.yml b/resources/fixtures/recorded/languages/rust/chuckKeyAir.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckKeyAir.yml rename to resources/fixtures/recorded/languages/rust/chuckKeyAir.yml diff --git a/data/fixtures/recorded/languages/rust/chuckKeyLook.yml b/resources/fixtures/recorded/languages/rust/chuckKeyLook.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckKeyLook.yml rename to resources/fixtures/recorded/languages/rust/chuckKeyLook.yml diff --git a/data/fixtures/recorded/languages/rust/chuckListOne.yml b/resources/fixtures/recorded/languages/rust/chuckListOne.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckListOne.yml rename to resources/fixtures/recorded/languages/rust/chuckListOne.yml diff --git a/data/fixtures/recorded/languages/rust/chuckName.yml b/resources/fixtures/recorded/languages/rust/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckName.yml rename to resources/fixtures/recorded/languages/rust/chuckName.yml diff --git a/data/fixtures/recorded/languages/rust/chuckName2.yml b/resources/fixtures/recorded/languages/rust/chuckName2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckName2.yml rename to resources/fixtures/recorded/languages/rust/chuckName2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckNameFine.yml b/resources/fixtures/recorded/languages/rust/chuckNameFine.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckNameFine.yml rename to resources/fixtures/recorded/languages/rust/chuckNameFine.yml diff --git a/data/fixtures/recorded/languages/rust/chuckNameJury.yml b/resources/fixtures/recorded/languages/rust/chuckNameJury.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckNameJury.yml rename to resources/fixtures/recorded/languages/rust/chuckNameJury.yml diff --git a/data/fixtures/recorded/languages/rust/chuckState.yml b/resources/fixtures/recorded/languages/rust/chuckState.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckState.yml rename to resources/fixtures/recorded/languages/rust/chuckState.yml diff --git a/data/fixtures/recorded/languages/rust/chuckString.yml b/resources/fixtures/recorded/languages/rust/chuckString.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckString.yml rename to resources/fixtures/recorded/languages/rust/chuckString.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypeAir.yml b/resources/fixtures/recorded/languages/rust/chuckTypeAir.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypeAir.yml rename to resources/fixtures/recorded/languages/rust/chuckTypeAir.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypeLook.yml b/resources/fixtures/recorded/languages/rust/chuckTypeLook.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypeLook.yml rename to resources/fixtures/recorded/languages/rust/chuckTypeLook.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypeMade.yml b/resources/fixtures/recorded/languages/rust/chuckTypeMade.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypeMade.yml rename to resources/fixtures/recorded/languages/rust/chuckTypeMade.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypeOdd.yml b/resources/fixtures/recorded/languages/rust/chuckTypeOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypeOdd.yml rename to resources/fixtures/recorded/languages/rust/chuckTypeOdd.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypeOdd2.yml b/resources/fixtures/recorded/languages/rust/chuckTypeOdd2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypeOdd2.yml rename to resources/fixtures/recorded/languages/rust/chuckTypeOdd2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypePlex.yml b/resources/fixtures/recorded/languages/rust/chuckTypePlex.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypePlex.yml rename to resources/fixtures/recorded/languages/rust/chuckTypePlex.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypePlex2.yml b/resources/fixtures/recorded/languages/rust/chuckTypePlex2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypePlex2.yml rename to resources/fixtures/recorded/languages/rust/chuckTypePlex2.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypeSun.yml b/resources/fixtures/recorded/languages/rust/chuckTypeSun.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypeSun.yml rename to resources/fixtures/recorded/languages/rust/chuckTypeSun.yml diff --git a/data/fixtures/recorded/languages/rust/chuckTypeYank.yml b/resources/fixtures/recorded/languages/rust/chuckTypeYank.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckTypeYank.yml rename to resources/fixtures/recorded/languages/rust/chuckTypeYank.yml diff --git a/data/fixtures/recorded/languages/rust/chuckValueFine.yml b/resources/fixtures/recorded/languages/rust/chuckValueFine.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckValueFine.yml rename to resources/fixtures/recorded/languages/rust/chuckValueFine.yml diff --git a/data/fixtures/recorded/languages/rust/chuckValueNear.yml b/resources/fixtures/recorded/languages/rust/chuckValueNear.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckValueNear.yml rename to resources/fixtures/recorded/languages/rust/chuckValueNear.yml diff --git a/data/fixtures/recorded/languages/rust/chuckValueZero.yml b/resources/fixtures/recorded/languages/rust/chuckValueZero.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/chuckValueZero.yml rename to resources/fixtures/recorded/languages/rust/chuckValueZero.yml diff --git a/data/fixtures/recorded/languages/rust/clearArgue.yml b/resources/fixtures/recorded/languages/rust/clearArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearArgue.yml rename to resources/fixtures/recorded/languages/rust/clearArgue.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch.yml b/resources/fixtures/recorded/languages/rust/clearBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch.yml rename to resources/fixtures/recorded/languages/rust/clearBranch.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch2.yml b/resources/fixtures/recorded/languages/rust/clearBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch2.yml rename to resources/fixtures/recorded/languages/rust/clearBranch2.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch3.yml b/resources/fixtures/recorded/languages/rust/clearBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch3.yml rename to resources/fixtures/recorded/languages/rust/clearBranch3.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch4.yml b/resources/fixtures/recorded/languages/rust/clearBranch4.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch4.yml rename to resources/fixtures/recorded/languages/rust/clearBranch4.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch5.yml b/resources/fixtures/recorded/languages/rust/clearBranch5.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch5.yml rename to resources/fixtures/recorded/languages/rust/clearBranch5.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch6.yml b/resources/fixtures/recorded/languages/rust/clearBranch6.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch6.yml rename to resources/fixtures/recorded/languages/rust/clearBranch6.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch7.yml b/resources/fixtures/recorded/languages/rust/clearBranch7.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch7.yml rename to resources/fixtures/recorded/languages/rust/clearBranch7.yml diff --git a/data/fixtures/recorded/languages/rust/clearBranch8.yml b/resources/fixtures/recorded/languages/rust/clearBranch8.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearBranch8.yml rename to resources/fixtures/recorded/languages/rust/clearBranch8.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition.yml b/resources/fixtures/recorded/languages/rust/clearCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition.yml rename to resources/fixtures/recorded/languages/rust/clearCondition.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition2.yml b/resources/fixtures/recorded/languages/rust/clearCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition2.yml rename to resources/fixtures/recorded/languages/rust/clearCondition2.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition3.yml b/resources/fixtures/recorded/languages/rust/clearCondition3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition3.yml rename to resources/fixtures/recorded/languages/rust/clearCondition3.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition4.yml b/resources/fixtures/recorded/languages/rust/clearCondition4.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition4.yml rename to resources/fixtures/recorded/languages/rust/clearCondition4.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition5.yml b/resources/fixtures/recorded/languages/rust/clearCondition5.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition5.yml rename to resources/fixtures/recorded/languages/rust/clearCondition5.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition6.yml b/resources/fixtures/recorded/languages/rust/clearCondition6.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition6.yml rename to resources/fixtures/recorded/languages/rust/clearCondition6.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition7.yml b/resources/fixtures/recorded/languages/rust/clearCondition7.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition7.yml rename to resources/fixtures/recorded/languages/rust/clearCondition7.yml diff --git a/data/fixtures/recorded/languages/rust/clearCondition8.yml b/resources/fixtures/recorded/languages/rust/clearCondition8.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearCondition8.yml rename to resources/fixtures/recorded/languages/rust/clearCondition8.yml diff --git a/data/fixtures/recorded/languages/rust/clearName.yml b/resources/fixtures/recorded/languages/rust/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearName.yml rename to resources/fixtures/recorded/languages/rust/clearName.yml diff --git a/data/fixtures/recorded/languages/rust/clearName2.yml b/resources/fixtures/recorded/languages/rust/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearName2.yml rename to resources/fixtures/recorded/languages/rust/clearName2.yml diff --git a/data/fixtures/recorded/languages/rust/clearState.yml b/resources/fixtures/recorded/languages/rust/clearState.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearState.yml rename to resources/fixtures/recorded/languages/rust/clearState.yml diff --git a/data/fixtures/recorded/languages/rust/clearState2.yml b/resources/fixtures/recorded/languages/rust/clearState2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearState2.yml rename to resources/fixtures/recorded/languages/rust/clearState2.yml diff --git a/data/fixtures/recorded/languages/rust/clearState3.yml b/resources/fixtures/recorded/languages/rust/clearState3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearState3.yml rename to resources/fixtures/recorded/languages/rust/clearState3.yml diff --git a/data/fixtures/recorded/languages/rust/clearState4.yml b/resources/fixtures/recorded/languages/rust/clearState4.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearState4.yml rename to resources/fixtures/recorded/languages/rust/clearState4.yml diff --git a/data/fixtures/recorded/languages/rust/clearValue.yml b/resources/fixtures/recorded/languages/rust/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearValue.yml rename to resources/fixtures/recorded/languages/rust/clearValue.yml diff --git a/data/fixtures/recorded/languages/rust/clearValue2.yml b/resources/fixtures/recorded/languages/rust/clearValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearValue2.yml rename to resources/fixtures/recorded/languages/rust/clearValue2.yml diff --git a/data/fixtures/recorded/languages/rust/clearValue4.yml b/resources/fixtures/recorded/languages/rust/clearValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearValue4.yml rename to resources/fixtures/recorded/languages/rust/clearValue4.yml diff --git a/data/fixtures/recorded/languages/rust/clearValue5.yml b/resources/fixtures/recorded/languages/rust/clearValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearValue5.yml rename to resources/fixtures/recorded/languages/rust/clearValue5.yml diff --git a/data/fixtures/recorded/languages/rust/clearValue7.yml b/resources/fixtures/recorded/languages/rust/clearValue7.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/clearValue7.yml rename to resources/fixtures/recorded/languages/rust/clearValue7.yml diff --git a/data/fixtures/recorded/languages/rust/ditchBranch.yml b/resources/fixtures/recorded/languages/rust/ditchBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/ditchBranch.yml rename to resources/fixtures/recorded/languages/rust/ditchBranch.yml diff --git a/data/fixtures/recorded/languages/rust/ditchBranch2.yml b/resources/fixtures/recorded/languages/rust/ditchBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/ditchBranch2.yml rename to resources/fixtures/recorded/languages/rust/ditchBranch2.yml diff --git a/data/fixtures/recorded/languages/rust/ditchBranch3.yml b/resources/fixtures/recorded/languages/rust/ditchBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/rust/ditchBranch3.yml rename to resources/fixtures/recorded/languages/rust/ditchBranch3.yml diff --git a/data/fixtures/recorded/languages/scala/chuckArgFine.yml b/resources/fixtures/recorded/languages/scala/chuckArgFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckArgFine.yml rename to resources/fixtures/recorded/languages/scala/chuckArgFine.yml diff --git a/data/fixtures/recorded/languages/scala/chuckArgFine2.yml b/resources/fixtures/recorded/languages/scala/chuckArgFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckArgFine2.yml rename to resources/fixtures/recorded/languages/scala/chuckArgFine2.yml diff --git a/data/fixtures/recorded/languages/scala/chuckArgFine3.yml b/resources/fixtures/recorded/languages/scala/chuckArgFine3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckArgFine3.yml rename to resources/fixtures/recorded/languages/scala/chuckArgFine3.yml diff --git a/data/fixtures/recorded/languages/scala/chuckBranchSun.yml b/resources/fixtures/recorded/languages/scala/chuckBranchSun.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckBranchSun.yml rename to resources/fixtures/recorded/languages/scala/chuckBranchSun.yml diff --git a/data/fixtures/recorded/languages/scala/chuckConditionFine.yml b/resources/fixtures/recorded/languages/scala/chuckConditionFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckConditionFine.yml rename to resources/fixtures/recorded/languages/scala/chuckConditionFine.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeBat.yml b/resources/fixtures/recorded/languages/scala/chuckTypeBat.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeBat.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeBat.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeFine.yml b/resources/fixtures/recorded/languages/scala/chuckTypeFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeFine.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeFine.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeFine2.yml b/resources/fixtures/recorded/languages/scala/chuckTypeFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeFine2.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeFine2.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeFine3.yml b/resources/fixtures/recorded/languages/scala/chuckTypeFine3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeFine3.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeFine3.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeLook.yml b/resources/fixtures/recorded/languages/scala/chuckTypeLook.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeLook.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeLook.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeLook2.yml b/resources/fixtures/recorded/languages/scala/chuckTypeLook2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeLook2.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeLook2.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeLook3.yml b/resources/fixtures/recorded/languages/scala/chuckTypeLook3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeLook3.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeLook3.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeOdd.yml b/resources/fixtures/recorded/languages/scala/chuckTypeOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeOdd.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeOdd.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeOdd2.yml b/resources/fixtures/recorded/languages/scala/chuckTypeOdd2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeOdd2.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeOdd2.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeOdd3.yml b/resources/fixtures/recorded/languages/scala/chuckTypeOdd3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeOdd3.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeOdd3.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeSit.yml b/resources/fixtures/recorded/languages/scala/chuckTypeSit.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeSit.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeSit.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeSit2.yml b/resources/fixtures/recorded/languages/scala/chuckTypeSit2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeSit2.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeSit2.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeSun.yml b/resources/fixtures/recorded/languages/scala/chuckTypeSun.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeSun.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeSun.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeSun3.yml b/resources/fixtures/recorded/languages/scala/chuckTypeSun3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeSun3.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeSun3.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeSun5.yml b/resources/fixtures/recorded/languages/scala/chuckTypeSun5.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeSun5.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeSun5.yml diff --git a/data/fixtures/recorded/languages/scala/chuckTypeTrap.yml b/resources/fixtures/recorded/languages/scala/chuckTypeTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckTypeTrap.yml rename to resources/fixtures/recorded/languages/scala/chuckTypeTrap.yml diff --git a/data/fixtures/recorded/languages/scala/chuckValue.yml b/resources/fixtures/recorded/languages/scala/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckValue.yml rename to resources/fixtures/recorded/languages/scala/chuckValue.yml diff --git a/data/fixtures/recorded/languages/scala/chuckValueOdd.yml b/resources/fixtures/recorded/languages/scala/chuckValueOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckValueOdd.yml rename to resources/fixtures/recorded/languages/scala/chuckValueOdd.yml diff --git a/data/fixtures/recorded/languages/scala/chuckValueRed.yml b/resources/fixtures/recorded/languages/scala/chuckValueRed.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckValueRed.yml rename to resources/fixtures/recorded/languages/scala/chuckValueRed.yml diff --git a/data/fixtures/recorded/languages/scala/chuckValueSit.yml b/resources/fixtures/recorded/languages/scala/chuckValueSit.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/chuckValueSit.yml rename to resources/fixtures/recorded/languages/scala/chuckValueSit.yml diff --git a/data/fixtures/recorded/languages/scala/clearArgFine.yml b/resources/fixtures/recorded/languages/scala/clearArgFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearArgFine.yml rename to resources/fixtures/recorded/languages/scala/clearArgFine.yml diff --git a/data/fixtures/recorded/languages/scala/clearArgFine2.yml b/resources/fixtures/recorded/languages/scala/clearArgFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearArgFine2.yml rename to resources/fixtures/recorded/languages/scala/clearArgFine2.yml diff --git a/data/fixtures/recorded/languages/scala/clearArgFine3.yml b/resources/fixtures/recorded/languages/scala/clearArgFine3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearArgFine3.yml rename to resources/fixtures/recorded/languages/scala/clearArgFine3.yml diff --git a/data/fixtures/recorded/languages/scala/clearBranch.yml b/resources/fixtures/recorded/languages/scala/clearBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearBranch.yml rename to resources/fixtures/recorded/languages/scala/clearBranch.yml diff --git a/data/fixtures/recorded/languages/scala/clearCallMade.yml b/resources/fixtures/recorded/languages/scala/clearCallMade.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearCallMade.yml rename to resources/fixtures/recorded/languages/scala/clearCallMade.yml diff --git a/data/fixtures/recorded/languages/scala/clearClass.yml b/resources/fixtures/recorded/languages/scala/clearClass.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClass.yml rename to resources/fixtures/recorded/languages/scala/clearClass.yml diff --git a/data/fixtures/recorded/languages/scala/clearClass2.yml b/resources/fixtures/recorded/languages/scala/clearClass2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClass2.yml rename to resources/fixtures/recorded/languages/scala/clearClass2.yml diff --git a/data/fixtures/recorded/languages/scala/clearClass3.yml b/resources/fixtures/recorded/languages/scala/clearClass3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClass3.yml rename to resources/fixtures/recorded/languages/scala/clearClass3.yml diff --git a/data/fixtures/recorded/languages/scala/clearClass4.yml b/resources/fixtures/recorded/languages/scala/clearClass4.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClass4.yml rename to resources/fixtures/recorded/languages/scala/clearClass4.yml diff --git a/data/fixtures/recorded/languages/scala/clearClassName.yml b/resources/fixtures/recorded/languages/scala/clearClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClassName.yml rename to resources/fixtures/recorded/languages/scala/clearClassName.yml diff --git a/data/fixtures/recorded/languages/scala/clearClassName2.yml b/resources/fixtures/recorded/languages/scala/clearClassName2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClassName2.yml rename to resources/fixtures/recorded/languages/scala/clearClassName2.yml diff --git a/data/fixtures/recorded/languages/scala/clearClassName3.yml b/resources/fixtures/recorded/languages/scala/clearClassName3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClassName3.yml rename to resources/fixtures/recorded/languages/scala/clearClassName3.yml diff --git a/data/fixtures/recorded/languages/scala/clearClassName4.yml b/resources/fixtures/recorded/languages/scala/clearClassName4.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearClassName4.yml rename to resources/fixtures/recorded/languages/scala/clearClassName4.yml diff --git a/data/fixtures/recorded/languages/scala/clearComment.yml b/resources/fixtures/recorded/languages/scala/clearComment.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearComment.yml rename to resources/fixtures/recorded/languages/scala/clearComment.yml diff --git a/data/fixtures/recorded/languages/scala/clearComment2.yml b/resources/fixtures/recorded/languages/scala/clearComment2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearComment2.yml rename to resources/fixtures/recorded/languages/scala/clearComment2.yml diff --git a/data/fixtures/recorded/languages/scala/clearConditionEquals.yml b/resources/fixtures/recorded/languages/scala/clearConditionEquals.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearConditionEquals.yml rename to resources/fixtures/recorded/languages/scala/clearConditionEquals.yml diff --git a/data/fixtures/recorded/languages/scala/clearConditionFine.yml b/resources/fixtures/recorded/languages/scala/clearConditionFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearConditionFine.yml rename to resources/fixtures/recorded/languages/scala/clearConditionFine.yml diff --git a/data/fixtures/recorded/languages/scala/clearFunkFour.yml b/resources/fixtures/recorded/languages/scala/clearFunkFour.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearFunkFour.yml rename to resources/fixtures/recorded/languages/scala/clearFunkFour.yml diff --git a/data/fixtures/recorded/languages/scala/clearFunkNameFour.yml b/resources/fixtures/recorded/languages/scala/clearFunkNameFour.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearFunkNameFour.yml rename to resources/fixtures/recorded/languages/scala/clearFunkNameFour.yml diff --git a/data/fixtures/recorded/languages/scala/clearLambdaPlus.yml b/resources/fixtures/recorded/languages/scala/clearLambdaPlus.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearLambdaPlus.yml rename to resources/fixtures/recorded/languages/scala/clearLambdaPlus.yml diff --git a/data/fixtures/recorded/languages/scala/clearLambdaPlus2.yml b/resources/fixtures/recorded/languages/scala/clearLambdaPlus2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearLambdaPlus2.yml rename to resources/fixtures/recorded/languages/scala/clearLambdaPlus2.yml diff --git a/data/fixtures/recorded/languages/scala/clearLambdaPlus3.yml b/resources/fixtures/recorded/languages/scala/clearLambdaPlus3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearLambdaPlus3.yml rename to resources/fixtures/recorded/languages/scala/clearLambdaPlus3.yml diff --git a/data/fixtures/recorded/languages/scala/clearName.yml b/resources/fixtures/recorded/languages/scala/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearName.yml rename to resources/fixtures/recorded/languages/scala/clearName.yml diff --git a/data/fixtures/recorded/languages/scala/clearNameFour.yml b/resources/fixtures/recorded/languages/scala/clearNameFour.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearNameFour.yml rename to resources/fixtures/recorded/languages/scala/clearNameFour.yml diff --git a/data/fixtures/recorded/languages/scala/clearNameFour2.yml b/resources/fixtures/recorded/languages/scala/clearNameFour2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearNameFour2.yml rename to resources/fixtures/recorded/languages/scala/clearNameFour2.yml diff --git a/data/fixtures/recorded/languages/scala/clearRoundWhale.yml b/resources/fixtures/recorded/languages/scala/clearRoundWhale.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearRoundWhale.yml rename to resources/fixtures/recorded/languages/scala/clearRoundWhale.yml diff --git a/data/fixtures/recorded/languages/scala/clearRoundWhale2.yml b/resources/fixtures/recorded/languages/scala/clearRoundWhale2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearRoundWhale2.yml rename to resources/fixtures/recorded/languages/scala/clearRoundWhale2.yml diff --git a/data/fixtures/recorded/languages/scala/clearString.yml b/resources/fixtures/recorded/languages/scala/clearString.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearString.yml rename to resources/fixtures/recorded/languages/scala/clearString.yml diff --git a/data/fixtures/recorded/languages/scala/clearString2.yml b/resources/fixtures/recorded/languages/scala/clearString2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearString2.yml rename to resources/fixtures/recorded/languages/scala/clearString2.yml diff --git a/data/fixtures/recorded/languages/scala/clearStringOdd.yml b/resources/fixtures/recorded/languages/scala/clearStringOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearStringOdd.yml rename to resources/fixtures/recorded/languages/scala/clearStringOdd.yml diff --git a/data/fixtures/recorded/languages/scala/clearSubject.yml b/resources/fixtures/recorded/languages/scala/clearSubject.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearSubject.yml rename to resources/fixtures/recorded/languages/scala/clearSubject.yml diff --git a/data/fixtures/recorded/languages/scala/clearType.yml b/resources/fixtures/recorded/languages/scala/clearType.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearType.yml rename to resources/fixtures/recorded/languages/scala/clearType.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeBat.yml b/resources/fixtures/recorded/languages/scala/clearTypeBat.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeBat.yml rename to resources/fixtures/recorded/languages/scala/clearTypeBat.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeComma.yml b/resources/fixtures/recorded/languages/scala/clearTypeComma.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeComma.yml rename to resources/fixtures/recorded/languages/scala/clearTypeComma.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeFine.yml b/resources/fixtures/recorded/languages/scala/clearTypeFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeFine.yml rename to resources/fixtures/recorded/languages/scala/clearTypeFine.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeFine2.yml b/resources/fixtures/recorded/languages/scala/clearTypeFine2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeFine2.yml rename to resources/fixtures/recorded/languages/scala/clearTypeFine2.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeFine3.yml b/resources/fixtures/recorded/languages/scala/clearTypeFine3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeFine3.yml rename to resources/fixtures/recorded/languages/scala/clearTypeFine3.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeLook.yml b/resources/fixtures/recorded/languages/scala/clearTypeLook.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeLook.yml rename to resources/fixtures/recorded/languages/scala/clearTypeLook.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeLook2.yml b/resources/fixtures/recorded/languages/scala/clearTypeLook2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeLook2.yml rename to resources/fixtures/recorded/languages/scala/clearTypeLook2.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeLook3.yml b/resources/fixtures/recorded/languages/scala/clearTypeLook3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeLook3.yml rename to resources/fixtures/recorded/languages/scala/clearTypeLook3.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeOdd.yml b/resources/fixtures/recorded/languages/scala/clearTypeOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeOdd.yml rename to resources/fixtures/recorded/languages/scala/clearTypeOdd.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeOdd2.yml b/resources/fixtures/recorded/languages/scala/clearTypeOdd2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeOdd2.yml rename to resources/fixtures/recorded/languages/scala/clearTypeOdd2.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeOdd3.yml b/resources/fixtures/recorded/languages/scala/clearTypeOdd3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeOdd3.yml rename to resources/fixtures/recorded/languages/scala/clearTypeOdd3.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeSit.yml b/resources/fixtures/recorded/languages/scala/clearTypeSit.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeSit.yml rename to resources/fixtures/recorded/languages/scala/clearTypeSit.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeSit2.yml b/resources/fixtures/recorded/languages/scala/clearTypeSit2.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeSit2.yml rename to resources/fixtures/recorded/languages/scala/clearTypeSit2.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeSun.yml b/resources/fixtures/recorded/languages/scala/clearTypeSun.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeSun.yml rename to resources/fixtures/recorded/languages/scala/clearTypeSun.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeSun3.yml b/resources/fixtures/recorded/languages/scala/clearTypeSun3.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeSun3.yml rename to resources/fixtures/recorded/languages/scala/clearTypeSun3.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeSun5.yml b/resources/fixtures/recorded/languages/scala/clearTypeSun5.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeSun5.yml rename to resources/fixtures/recorded/languages/scala/clearTypeSun5.yml diff --git a/data/fixtures/recorded/languages/scala/clearTypeTrap.yml b/resources/fixtures/recorded/languages/scala/clearTypeTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearTypeTrap.yml rename to resources/fixtures/recorded/languages/scala/clearTypeTrap.yml diff --git a/data/fixtures/recorded/languages/scala/clearValue.yml b/resources/fixtures/recorded/languages/scala/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearValue.yml rename to resources/fixtures/recorded/languages/scala/clearValue.yml diff --git a/data/fixtures/recorded/languages/scala/clearValueOdd.yml b/resources/fixtures/recorded/languages/scala/clearValueOdd.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearValueOdd.yml rename to resources/fixtures/recorded/languages/scala/clearValueOdd.yml diff --git a/data/fixtures/recorded/languages/scala/clearValueRed.yml b/resources/fixtures/recorded/languages/scala/clearValueRed.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearValueRed.yml rename to resources/fixtures/recorded/languages/scala/clearValueRed.yml diff --git a/data/fixtures/recorded/languages/scala/clearValueSit.yml b/resources/fixtures/recorded/languages/scala/clearValueSit.yml similarity index 100% rename from data/fixtures/recorded/languages/scala/clearValueSit.yml rename to resources/fixtures/recorded/languages/scala/clearValueSit.yml diff --git a/data/fixtures/recorded/languages/scm/bringNameToAir.yml b/resources/fixtures/recorded/languages/scm/bringNameToAir.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/bringNameToAir.yml rename to resources/fixtures/recorded/languages/scm/bringNameToAir.yml diff --git a/data/fixtures/recorded/languages/scm/changeEveryName.yml b/resources/fixtures/recorded/languages/scm/changeEveryName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/changeEveryName.yml rename to resources/fixtures/recorded/languages/scm/changeEveryName.yml diff --git a/data/fixtures/recorded/languages/scm/changeName.yml b/resources/fixtures/recorded/languages/scm/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/changeName.yml rename to resources/fixtures/recorded/languages/scm/changeName.yml diff --git a/data/fixtures/recorded/languages/scm/changeName2.yml b/resources/fixtures/recorded/languages/scm/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/changeName2.yml rename to resources/fixtures/recorded/languages/scm/changeName2.yml diff --git a/data/fixtures/recorded/languages/scm/changeName3.yml b/resources/fixtures/recorded/languages/scm/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/changeName3.yml rename to resources/fixtures/recorded/languages/scm/changeName3.yml diff --git a/data/fixtures/recorded/languages/scm/changeValue.yml b/resources/fixtures/recorded/languages/scm/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/changeValue.yml rename to resources/fixtures/recorded/languages/scm/changeValue.yml diff --git a/data/fixtures/recorded/languages/scm/chuckKey.yml b/resources/fixtures/recorded/languages/scm/chuckKey.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/chuckKey.yml rename to resources/fixtures/recorded/languages/scm/chuckKey.yml diff --git a/data/fixtures/recorded/languages/scm/chuckName.yml b/resources/fixtures/recorded/languages/scm/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/chuckName.yml rename to resources/fixtures/recorded/languages/scm/chuckName.yml diff --git a/data/fixtures/recorded/languages/scm/chuckName2.yml b/resources/fixtures/recorded/languages/scm/chuckName2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/chuckName2.yml rename to resources/fixtures/recorded/languages/scm/chuckName2.yml diff --git a/data/fixtures/recorded/languages/scm/clearCall.yml b/resources/fixtures/recorded/languages/scm/clearCall.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearCall.yml rename to resources/fixtures/recorded/languages/scm/clearCall.yml diff --git a/data/fixtures/recorded/languages/scm/clearCallee.yml b/resources/fixtures/recorded/languages/scm/clearCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearCallee.yml rename to resources/fixtures/recorded/languages/scm/clearCallee.yml diff --git a/data/fixtures/recorded/languages/scm/clearComment.yml b/resources/fixtures/recorded/languages/scm/clearComment.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearComment.yml rename to resources/fixtures/recorded/languages/scm/clearComment.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryArgue.yml b/resources/fixtures/recorded/languages/scm/clearEveryArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryArgue.yml rename to resources/fixtures/recorded/languages/scm/clearEveryArgue.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryCall.yml b/resources/fixtures/recorded/languages/scm/clearEveryCall.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryCall.yml rename to resources/fixtures/recorded/languages/scm/clearEveryCall.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryCallee.yml b/resources/fixtures/recorded/languages/scm/clearEveryCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryCallee.yml rename to resources/fixtures/recorded/languages/scm/clearEveryCallee.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryEntry.yml b/resources/fixtures/recorded/languages/scm/clearEveryEntry.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryEntry.yml rename to resources/fixtures/recorded/languages/scm/clearEveryEntry.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryEntry2.yml b/resources/fixtures/recorded/languages/scm/clearEveryEntry2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryEntry2.yml rename to resources/fixtures/recorded/languages/scm/clearEveryEntry2.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryEntry3.yml b/resources/fixtures/recorded/languages/scm/clearEveryEntry3.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryEntry3.yml rename to resources/fixtures/recorded/languages/scm/clearEveryEntry3.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryEntry4.yml b/resources/fixtures/recorded/languages/scm/clearEveryEntry4.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryEntry4.yml rename to resources/fixtures/recorded/languages/scm/clearEveryEntry4.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryName.yml b/resources/fixtures/recorded/languages/scm/clearEveryName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryName.yml rename to resources/fixtures/recorded/languages/scm/clearEveryName.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryName2.yml b/resources/fixtures/recorded/languages/scm/clearEveryName2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryName2.yml rename to resources/fixtures/recorded/languages/scm/clearEveryName2.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryName3.yml b/resources/fixtures/recorded/languages/scm/clearEveryName3.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryName3.yml rename to resources/fixtures/recorded/languages/scm/clearEveryName3.yml diff --git a/data/fixtures/recorded/languages/scm/clearEveryState.yml b/resources/fixtures/recorded/languages/scm/clearEveryState.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearEveryState.yml rename to resources/fixtures/recorded/languages/scm/clearEveryState.yml diff --git a/data/fixtures/recorded/languages/scm/clearItem.yml b/resources/fixtures/recorded/languages/scm/clearItem.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearItem.yml rename to resources/fixtures/recorded/languages/scm/clearItem.yml diff --git a/data/fixtures/recorded/languages/scm/clearKey.yml b/resources/fixtures/recorded/languages/scm/clearKey.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearKey.yml rename to resources/fixtures/recorded/languages/scm/clearKey.yml diff --git a/data/fixtures/recorded/languages/scm/clearList.yml b/resources/fixtures/recorded/languages/scm/clearList.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearList.yml rename to resources/fixtures/recorded/languages/scm/clearList.yml diff --git a/data/fixtures/recorded/languages/scm/clearList2.yml b/resources/fixtures/recorded/languages/scm/clearList2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearList2.yml rename to resources/fixtures/recorded/languages/scm/clearList2.yml diff --git a/data/fixtures/recorded/languages/scm/clearName.yml b/resources/fixtures/recorded/languages/scm/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearName.yml rename to resources/fixtures/recorded/languages/scm/clearName.yml diff --git a/data/fixtures/recorded/languages/scm/clearName2.yml b/resources/fixtures/recorded/languages/scm/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearName2.yml rename to resources/fixtures/recorded/languages/scm/clearName2.yml diff --git a/data/fixtures/recorded/languages/scm/clearName3.yml b/resources/fixtures/recorded/languages/scm/clearName3.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearName3.yml rename to resources/fixtures/recorded/languages/scm/clearName3.yml diff --git a/data/fixtures/recorded/languages/scm/clearName4.yml b/resources/fixtures/recorded/languages/scm/clearName4.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearName4.yml rename to resources/fixtures/recorded/languages/scm/clearName4.yml diff --git a/data/fixtures/recorded/languages/scm/clearName5.yml b/resources/fixtures/recorded/languages/scm/clearName5.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearName5.yml rename to resources/fixtures/recorded/languages/scm/clearName5.yml diff --git a/data/fixtures/recorded/languages/scm/clearName6.yml b/resources/fixtures/recorded/languages/scm/clearName6.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearName6.yml rename to resources/fixtures/recorded/languages/scm/clearName6.yml diff --git a/data/fixtures/recorded/languages/scm/clearName7.yml b/resources/fixtures/recorded/languages/scm/clearName7.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearName7.yml rename to resources/fixtures/recorded/languages/scm/clearName7.yml diff --git a/data/fixtures/recorded/languages/scm/clearRound.yml b/resources/fixtures/recorded/languages/scm/clearRound.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearRound.yml rename to resources/fixtures/recorded/languages/scm/clearRound.yml diff --git a/data/fixtures/recorded/languages/scm/clearRound2.yml b/resources/fixtures/recorded/languages/scm/clearRound2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearRound2.yml rename to resources/fixtures/recorded/languages/scm/clearRound2.yml diff --git a/data/fixtures/recorded/languages/scm/clearRound3.yml b/resources/fixtures/recorded/languages/scm/clearRound3.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearRound3.yml rename to resources/fixtures/recorded/languages/scm/clearRound3.yml diff --git a/data/fixtures/recorded/languages/scm/clearState.yml b/resources/fixtures/recorded/languages/scm/clearState.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearState.yml rename to resources/fixtures/recorded/languages/scm/clearState.yml diff --git a/data/fixtures/recorded/languages/scm/clearState3.yml b/resources/fixtures/recorded/languages/scm/clearState3.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearState3.yml rename to resources/fixtures/recorded/languages/scm/clearState3.yml diff --git a/data/fixtures/recorded/languages/scm/clearState4.yml b/resources/fixtures/recorded/languages/scm/clearState4.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearState4.yml rename to resources/fixtures/recorded/languages/scm/clearState4.yml diff --git a/data/fixtures/recorded/languages/scm/clearState5.yml b/resources/fixtures/recorded/languages/scm/clearState5.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearState5.yml rename to resources/fixtures/recorded/languages/scm/clearState5.yml diff --git a/data/fixtures/recorded/languages/scm/clearType.yml b/resources/fixtures/recorded/languages/scm/clearType.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearType.yml rename to resources/fixtures/recorded/languages/scm/clearType.yml diff --git a/data/fixtures/recorded/languages/scm/clearType2.yml b/resources/fixtures/recorded/languages/scm/clearType2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearType2.yml rename to resources/fixtures/recorded/languages/scm/clearType2.yml diff --git a/data/fixtures/recorded/languages/scm/clearType3.yml b/resources/fixtures/recorded/languages/scm/clearType3.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearType3.yml rename to resources/fixtures/recorded/languages/scm/clearType3.yml diff --git a/data/fixtures/recorded/languages/scm/clearValue.yml b/resources/fixtures/recorded/languages/scm/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/clearValue.yml rename to resources/fixtures/recorded/languages/scm/clearValue.yml diff --git a/data/fixtures/recorded/languages/scm/cloneName.yml b/resources/fixtures/recorded/languages/scm/cloneName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/cloneName.yml rename to resources/fixtures/recorded/languages/scm/cloneName.yml diff --git a/data/fixtures/recorded/languages/scm/drinkName.yml b/resources/fixtures/recorded/languages/scm/drinkName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/drinkName.yml rename to resources/fixtures/recorded/languages/scm/drinkName.yml diff --git a/data/fixtures/recorded/languages/scm/pourName.yml b/resources/fixtures/recorded/languages/scm/pourName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/pourName.yml rename to resources/fixtures/recorded/languages/scm/pourName.yml diff --git a/data/fixtures/recorded/languages/scm/pourName2.yml b/resources/fixtures/recorded/languages/scm/pourName2.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/pourName2.yml rename to resources/fixtures/recorded/languages/scm/pourName2.yml diff --git a/data/fixtures/recorded/languages/scm/takeName.yml b/resources/fixtures/recorded/languages/scm/takeName.yml similarity index 100% rename from data/fixtures/recorded/languages/scm/takeName.yml rename to resources/fixtures/recorded/languages/scm/takeName.yml diff --git a/data/fixtures/recorded/languages/scss/changeArgue.yml b/resources/fixtures/recorded/languages/scss/changeArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeArgue.yml rename to resources/fixtures/recorded/languages/scss/changeArgue.yml diff --git a/data/fixtures/recorded/languages/scss/changeArgue2.yml b/resources/fixtures/recorded/languages/scss/changeArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeArgue2.yml rename to resources/fixtures/recorded/languages/scss/changeArgue2.yml diff --git a/data/fixtures/recorded/languages/scss/changeArgue3.yml b/resources/fixtures/recorded/languages/scss/changeArgue3.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeArgue3.yml rename to resources/fixtures/recorded/languages/scss/changeArgue3.yml diff --git a/data/fixtures/recorded/languages/scss/changeArgue4.yml b/resources/fixtures/recorded/languages/scss/changeArgue4.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeArgue4.yml rename to resources/fixtures/recorded/languages/scss/changeArgue4.yml diff --git a/data/fixtures/recorded/languages/scss/changeArgue5.yml b/resources/fixtures/recorded/languages/scss/changeArgue5.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeArgue5.yml rename to resources/fixtures/recorded/languages/scss/changeArgue5.yml diff --git a/data/fixtures/recorded/languages/scss/changeArgue6.yml b/resources/fixtures/recorded/languages/scss/changeArgue6.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeArgue6.yml rename to resources/fixtures/recorded/languages/scss/changeArgue6.yml diff --git a/data/fixtures/recorded/languages/scss/changeCallee.yml b/resources/fixtures/recorded/languages/scss/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeCallee.yml rename to resources/fixtures/recorded/languages/scss/changeCallee.yml diff --git a/data/fixtures/recorded/languages/scss/changeEveryArgue.yml b/resources/fixtures/recorded/languages/scss/changeEveryArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeEveryArgue.yml rename to resources/fixtures/recorded/languages/scss/changeEveryArgue.yml diff --git a/data/fixtures/recorded/languages/scss/changeEveryArgue2.yml b/resources/fixtures/recorded/languages/scss/changeEveryArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeEveryArgue2.yml rename to resources/fixtures/recorded/languages/scss/changeEveryArgue2.yml diff --git a/data/fixtures/recorded/languages/scss/changeEveryArgue3.yml b/resources/fixtures/recorded/languages/scss/changeEveryArgue3.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeEveryArgue3.yml rename to resources/fixtures/recorded/languages/scss/changeEveryArgue3.yml diff --git a/data/fixtures/recorded/languages/scss/changeFirstWordLook.yml b/resources/fixtures/recorded/languages/scss/changeFirstWordLook.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeFirstWordLook.yml rename to resources/fixtures/recorded/languages/scss/changeFirstWordLook.yml diff --git a/data/fixtures/recorded/languages/scss/changeFunk.yml b/resources/fixtures/recorded/languages/scss/changeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeFunk.yml rename to resources/fixtures/recorded/languages/scss/changeFunk.yml diff --git a/data/fixtures/recorded/languages/scss/changeFunk2.yml b/resources/fixtures/recorded/languages/scss/changeFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeFunk2.yml rename to resources/fixtures/recorded/languages/scss/changeFunk2.yml diff --git a/data/fixtures/recorded/languages/scss/changeItem.yml b/resources/fixtures/recorded/languages/scss/changeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeItem.yml rename to resources/fixtures/recorded/languages/scss/changeItem.yml diff --git a/data/fixtures/recorded/languages/scss/changeKey.yml b/resources/fixtures/recorded/languages/scss/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeKey.yml rename to resources/fixtures/recorded/languages/scss/changeKey.yml diff --git a/data/fixtures/recorded/languages/scss/changeKey2.yml b/resources/fixtures/recorded/languages/scss/changeKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeKey2.yml rename to resources/fixtures/recorded/languages/scss/changeKey2.yml diff --git a/data/fixtures/recorded/languages/scss/changeLastWordLook.yml b/resources/fixtures/recorded/languages/scss/changeLastWordLook.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeLastWordLook.yml rename to resources/fixtures/recorded/languages/scss/changeLastWordLook.yml diff --git a/data/fixtures/recorded/languages/scss/changeLeadingLastWordLook.yml b/resources/fixtures/recorded/languages/scss/changeLeadingLastWordLook.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeLeadingLastWordLook.yml rename to resources/fixtures/recorded/languages/scss/changeLeadingLastWordLook.yml diff --git a/data/fixtures/recorded/languages/scss/changeName.yml b/resources/fixtures/recorded/languages/scss/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName.yml rename to resources/fixtures/recorded/languages/scss/changeName.yml diff --git a/data/fixtures/recorded/languages/scss/changeName2.yml b/resources/fixtures/recorded/languages/scss/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName2.yml rename to resources/fixtures/recorded/languages/scss/changeName2.yml diff --git a/data/fixtures/recorded/languages/scss/changeName3.yml b/resources/fixtures/recorded/languages/scss/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName3.yml rename to resources/fixtures/recorded/languages/scss/changeName3.yml diff --git a/data/fixtures/recorded/languages/scss/changeName4.yml b/resources/fixtures/recorded/languages/scss/changeName4.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName4.yml rename to resources/fixtures/recorded/languages/scss/changeName4.yml diff --git a/data/fixtures/recorded/languages/scss/changeName5.yml b/resources/fixtures/recorded/languages/scss/changeName5.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName5.yml rename to resources/fixtures/recorded/languages/scss/changeName5.yml diff --git a/data/fixtures/recorded/languages/scss/changeName6.yml b/resources/fixtures/recorded/languages/scss/changeName6.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName6.yml rename to resources/fixtures/recorded/languages/scss/changeName6.yml diff --git a/data/fixtures/recorded/languages/scss/changeName7.yml b/resources/fixtures/recorded/languages/scss/changeName7.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName7.yml rename to resources/fixtures/recorded/languages/scss/changeName7.yml diff --git a/data/fixtures/recorded/languages/scss/changeName8.yml b/resources/fixtures/recorded/languages/scss/changeName8.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName8.yml rename to resources/fixtures/recorded/languages/scss/changeName8.yml diff --git a/data/fixtures/recorded/languages/scss/changeName9.yml b/resources/fixtures/recorded/languages/scss/changeName9.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeName9.yml rename to resources/fixtures/recorded/languages/scss/changeName9.yml diff --git a/data/fixtures/recorded/languages/scss/changeRound.yml b/resources/fixtures/recorded/languages/scss/changeRound.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeRound.yml rename to resources/fixtures/recorded/languages/scss/changeRound.yml diff --git a/data/fixtures/recorded/languages/scss/changeSecondWordLook.yml b/resources/fixtures/recorded/languages/scss/changeSecondWordLook.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeSecondWordLook.yml rename to resources/fixtures/recorded/languages/scss/changeSecondWordLook.yml diff --git a/data/fixtures/recorded/languages/scss/changeSelector.yml b/resources/fixtures/recorded/languages/scss/changeSelector.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeSelector.yml rename to resources/fixtures/recorded/languages/scss/changeSelector.yml diff --git a/data/fixtures/recorded/languages/scss/changeSelector2.yml b/resources/fixtures/recorded/languages/scss/changeSelector2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeSelector2.yml rename to resources/fixtures/recorded/languages/scss/changeSelector2.yml diff --git a/data/fixtures/recorded/languages/scss/changeSelector3.yml b/resources/fixtures/recorded/languages/scss/changeSelector3.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeSelector3.yml rename to resources/fixtures/recorded/languages/scss/changeSelector3.yml diff --git a/data/fixtures/recorded/languages/scss/changeState.yml b/resources/fixtures/recorded/languages/scss/changeState.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeState.yml rename to resources/fixtures/recorded/languages/scss/changeState.yml diff --git a/data/fixtures/recorded/languages/scss/changeState4.yml b/resources/fixtures/recorded/languages/scss/changeState4.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeState4.yml rename to resources/fixtures/recorded/languages/scss/changeState4.yml diff --git a/data/fixtures/recorded/languages/scss/changeState5.yml b/resources/fixtures/recorded/languages/scss/changeState5.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeState5.yml rename to resources/fixtures/recorded/languages/scss/changeState5.yml diff --git a/data/fixtures/recorded/languages/scss/changeState6.yml b/resources/fixtures/recorded/languages/scss/changeState6.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeState6.yml rename to resources/fixtures/recorded/languages/scss/changeState6.yml diff --git a/data/fixtures/recorded/languages/scss/changeStateAir.yml b/resources/fixtures/recorded/languages/scss/changeStateAir.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeStateAir.yml rename to resources/fixtures/recorded/languages/scss/changeStateAir.yml diff --git a/data/fixtures/recorded/languages/scss/changeStateHarp.yml b/resources/fixtures/recorded/languages/scss/changeStateHarp.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeStateHarp.yml rename to resources/fixtures/recorded/languages/scss/changeStateHarp.yml diff --git a/data/fixtures/recorded/languages/scss/changeTrailingFirstWordLook.yml b/resources/fixtures/recorded/languages/scss/changeTrailingFirstWordLook.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeTrailingFirstWordLook.yml rename to resources/fixtures/recorded/languages/scss/changeTrailingFirstWordLook.yml diff --git a/data/fixtures/recorded/languages/scss/changeUnit.yml b/resources/fixtures/recorded/languages/scss/changeUnit.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeUnit.yml rename to resources/fixtures/recorded/languages/scss/changeUnit.yml diff --git a/data/fixtures/recorded/languages/scss/changeUnit2.yml b/resources/fixtures/recorded/languages/scss/changeUnit2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeUnit2.yml rename to resources/fixtures/recorded/languages/scss/changeUnit2.yml diff --git a/data/fixtures/recorded/languages/scss/changeUnitGust.yml b/resources/fixtures/recorded/languages/scss/changeUnitGust.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeUnitGust.yml rename to resources/fixtures/recorded/languages/scss/changeUnitGust.yml diff --git a/data/fixtures/recorded/languages/scss/changeUnitOne.yml b/resources/fixtures/recorded/languages/scss/changeUnitOne.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeUnitOne.yml rename to resources/fixtures/recorded/languages/scss/changeUnitOne.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue.yml b/resources/fixtures/recorded/languages/scss/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue.yml rename to resources/fixtures/recorded/languages/scss/changeValue.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue10.yml b/resources/fixtures/recorded/languages/scss/changeValue10.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue10.yml rename to resources/fixtures/recorded/languages/scss/changeValue10.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue11.yml b/resources/fixtures/recorded/languages/scss/changeValue11.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue11.yml rename to resources/fixtures/recorded/languages/scss/changeValue11.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue12.yml b/resources/fixtures/recorded/languages/scss/changeValue12.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue12.yml rename to resources/fixtures/recorded/languages/scss/changeValue12.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue13.yml b/resources/fixtures/recorded/languages/scss/changeValue13.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue13.yml rename to resources/fixtures/recorded/languages/scss/changeValue13.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue14.yml b/resources/fixtures/recorded/languages/scss/changeValue14.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue14.yml rename to resources/fixtures/recorded/languages/scss/changeValue14.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue15.yml b/resources/fixtures/recorded/languages/scss/changeValue15.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue15.yml rename to resources/fixtures/recorded/languages/scss/changeValue15.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue2.yml b/resources/fixtures/recorded/languages/scss/changeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue2.yml rename to resources/fixtures/recorded/languages/scss/changeValue2.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue3.yml b/resources/fixtures/recorded/languages/scss/changeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue3.yml rename to resources/fixtures/recorded/languages/scss/changeValue3.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue4.yml b/resources/fixtures/recorded/languages/scss/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue4.yml rename to resources/fixtures/recorded/languages/scss/changeValue4.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue5.yml b/resources/fixtures/recorded/languages/scss/changeValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue5.yml rename to resources/fixtures/recorded/languages/scss/changeValue5.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue6.yml b/resources/fixtures/recorded/languages/scss/changeValue6.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue6.yml rename to resources/fixtures/recorded/languages/scss/changeValue6.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue7.yml b/resources/fixtures/recorded/languages/scss/changeValue7.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue7.yml rename to resources/fixtures/recorded/languages/scss/changeValue7.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue8.yml b/resources/fixtures/recorded/languages/scss/changeValue8.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue8.yml rename to resources/fixtures/recorded/languages/scss/changeValue8.yml diff --git a/data/fixtures/recorded/languages/scss/changeValue9.yml b/resources/fixtures/recorded/languages/scss/changeValue9.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/changeValue9.yml rename to resources/fixtures/recorded/languages/scss/changeValue9.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue.yml b/resources/fixtures/recorded/languages/scss/chuckArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue2.yml b/resources/fixtures/recorded/languages/scss/chuckArgue2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue2.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue2.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue3.yml b/resources/fixtures/recorded/languages/scss/chuckArgue3.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue3.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue3.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue4.yml b/resources/fixtures/recorded/languages/scss/chuckArgue4.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue4.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue4.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue5.yml b/resources/fixtures/recorded/languages/scss/chuckArgue5.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue5.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue5.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue6.yml b/resources/fixtures/recorded/languages/scss/chuckArgue6.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue6.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue6.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue7.yml b/resources/fixtures/recorded/languages/scss/chuckArgue7.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue7.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue7.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue8.yml b/resources/fixtures/recorded/languages/scss/chuckArgue8.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue8.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue8.yml diff --git a/data/fixtures/recorded/languages/scss/chuckArgue9.yml b/resources/fixtures/recorded/languages/scss/chuckArgue9.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckArgue9.yml rename to resources/fixtures/recorded/languages/scss/chuckArgue9.yml diff --git a/data/fixtures/recorded/languages/scss/chuckEveryArgue.yml b/resources/fixtures/recorded/languages/scss/chuckEveryArgue.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckEveryArgue.yml rename to resources/fixtures/recorded/languages/scss/chuckEveryArgue.yml diff --git a/data/fixtures/recorded/languages/scss/chuckFirstWordCap.yml b/resources/fixtures/recorded/languages/scss/chuckFirstWordCap.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckFirstWordCap.yml rename to resources/fixtures/recorded/languages/scss/chuckFirstWordCap.yml diff --git a/data/fixtures/recorded/languages/scss/chuckLastWordCap.yml b/resources/fixtures/recorded/languages/scss/chuckLastWordCap.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckLastWordCap.yml rename to resources/fixtures/recorded/languages/scss/chuckLastWordCap.yml diff --git a/data/fixtures/recorded/languages/scss/chuckState.yml b/resources/fixtures/recorded/languages/scss/chuckState.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckState.yml rename to resources/fixtures/recorded/languages/scss/chuckState.yml diff --git a/data/fixtures/recorded/languages/scss/chuckState2.yml b/resources/fixtures/recorded/languages/scss/chuckState2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckState2.yml rename to resources/fixtures/recorded/languages/scss/chuckState2.yml diff --git a/data/fixtures/recorded/languages/scss/chuckValue.yml b/resources/fixtures/recorded/languages/scss/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckValue.yml rename to resources/fixtures/recorded/languages/scss/chuckValue.yml diff --git a/data/fixtures/recorded/languages/scss/chuckValue2.yml b/resources/fixtures/recorded/languages/scss/chuckValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckValue2.yml rename to resources/fixtures/recorded/languages/scss/chuckValue2.yml diff --git a/data/fixtures/recorded/languages/scss/chuckValue3.yml b/resources/fixtures/recorded/languages/scss/chuckValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/chuckValue3.yml rename to resources/fixtures/recorded/languages/scss/chuckValue3.yml diff --git a/data/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeFine.yml b/resources/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeFine.yml rename to resources/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeFine.yml diff --git a/data/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeZip.yml b/resources/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeZip.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeZip.yml rename to resources/fixtures/recorded/languages/scss/moveFirstWordZipBeforeFineTakeZip.yml diff --git a/data/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeFine.yml b/resources/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeFine.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeFine.yml rename to resources/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeFine.yml diff --git a/data/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeZip.yml b/resources/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeZip.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeZip.yml rename to resources/fixtures/recorded/languages/scss/moveLastWordZipAfterFineTakeZip.yml diff --git a/data/fixtures/recorded/languages/scss/takeEveryToken.yml b/resources/fixtures/recorded/languages/scss/takeEveryToken.yml similarity index 100% rename from data/fixtures/recorded/languages/scss/takeEveryToken.yml rename to resources/fixtures/recorded/languages/scss/takeEveryToken.yml diff --git a/data/fixtures/recorded/languages/shellscript/changeThirdWordDash.yml b/resources/fixtures/recorded/languages/shellscript/changeThirdWordDash.yml similarity index 100% rename from data/fixtures/recorded/languages/shellscript/changeThirdWordDash.yml rename to resources/fixtures/recorded/languages/shellscript/changeThirdWordDash.yml diff --git a/data/fixtures/recorded/languages/shellscript/chuckFirstWordBat.yml b/resources/fixtures/recorded/languages/shellscript/chuckFirstWordBat.yml similarity index 100% rename from data/fixtures/recorded/languages/shellscript/chuckFirstWordBat.yml rename to resources/fixtures/recorded/languages/shellscript/chuckFirstWordBat.yml diff --git a/data/fixtures/recorded/languages/shellscript/chuckSecondWordCap.yml b/resources/fixtures/recorded/languages/shellscript/chuckSecondWordCap.yml similarity index 100% rename from data/fixtures/recorded/languages/shellscript/chuckSecondWordCap.yml rename to resources/fixtures/recorded/languages/shellscript/chuckSecondWordCap.yml diff --git a/data/fixtures/recorded/languages/talon/changeCondition.yml b/resources/fixtures/recorded/languages/talon/changeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/changeCondition.yml rename to resources/fixtures/recorded/languages/talon/changeCondition.yml diff --git a/data/fixtures/recorded/languages/talon/changeCondition2.yml b/resources/fixtures/recorded/languages/talon/changeCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/changeCondition2.yml rename to resources/fixtures/recorded/languages/talon/changeCondition2.yml diff --git a/data/fixtures/recorded/languages/talon/changeEveryCommand.yml b/resources/fixtures/recorded/languages/talon/changeEveryCommand.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/changeEveryCommand.yml rename to resources/fixtures/recorded/languages/talon/changeEveryCommand.yml diff --git a/data/fixtures/recorded/languages/talon/changeLeadingArg.yml b/resources/fixtures/recorded/languages/talon/changeLeadingArg.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/changeLeadingArg.yml rename to resources/fixtures/recorded/languages/talon/changeLeadingArg.yml diff --git a/data/fixtures/recorded/languages/talon/changeTrailingArg.yml b/resources/fixtures/recorded/languages/talon/changeTrailingArg.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/changeTrailingArg.yml rename to resources/fixtures/recorded/languages/talon/changeTrailingArg.yml diff --git a/data/fixtures/recorded/languages/talon/chuckCondition.yml b/resources/fixtures/recorded/languages/talon/chuckCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/chuckCondition.yml rename to resources/fixtures/recorded/languages/talon/chuckCondition.yml diff --git a/data/fixtures/recorded/languages/talon/chuckCondition2.yml b/resources/fixtures/recorded/languages/talon/chuckCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/chuckCondition2.yml rename to resources/fixtures/recorded/languages/talon/chuckCondition2.yml diff --git a/data/fixtures/recorded/languages/talon/clearArg.yml b/resources/fixtures/recorded/languages/talon/clearArg.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearArg.yml rename to resources/fixtures/recorded/languages/talon/clearArg.yml diff --git a/data/fixtures/recorded/languages/talon/clearArg2.yml b/resources/fixtures/recorded/languages/talon/clearArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearArg2.yml rename to resources/fixtures/recorded/languages/talon/clearArg2.yml diff --git a/data/fixtures/recorded/languages/talon/clearArg3.yml b/resources/fixtures/recorded/languages/talon/clearArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearArg3.yml rename to resources/fixtures/recorded/languages/talon/clearArg3.yml diff --git a/data/fixtures/recorded/languages/talon/clearArg4.yml b/resources/fixtures/recorded/languages/talon/clearArg4.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearArg4.yml rename to resources/fixtures/recorded/languages/talon/clearArg4.yml diff --git a/data/fixtures/recorded/languages/talon/clearCall.yml b/resources/fixtures/recorded/languages/talon/clearCall.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCall.yml rename to resources/fixtures/recorded/languages/talon/clearCall.yml diff --git a/data/fixtures/recorded/languages/talon/clearCall2.yml b/resources/fixtures/recorded/languages/talon/clearCall2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCall2.yml rename to resources/fixtures/recorded/languages/talon/clearCall2.yml diff --git a/data/fixtures/recorded/languages/talon/clearCall3.yml b/resources/fixtures/recorded/languages/talon/clearCall3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCall3.yml rename to resources/fixtures/recorded/languages/talon/clearCall3.yml diff --git a/data/fixtures/recorded/languages/talon/clearCall4.yml b/resources/fixtures/recorded/languages/talon/clearCall4.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCall4.yml rename to resources/fixtures/recorded/languages/talon/clearCall4.yml diff --git a/data/fixtures/recorded/languages/talon/clearCallee.yml b/resources/fixtures/recorded/languages/talon/clearCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCallee.yml rename to resources/fixtures/recorded/languages/talon/clearCallee.yml diff --git a/data/fixtures/recorded/languages/talon/clearCallee2.yml b/resources/fixtures/recorded/languages/talon/clearCallee2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCallee2.yml rename to resources/fixtures/recorded/languages/talon/clearCallee2.yml diff --git a/data/fixtures/recorded/languages/talon/clearCallee3.yml b/resources/fixtures/recorded/languages/talon/clearCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCallee3.yml rename to resources/fixtures/recorded/languages/talon/clearCallee3.yml diff --git a/data/fixtures/recorded/languages/talon/clearCommand.yml b/resources/fixtures/recorded/languages/talon/clearCommand.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCommand.yml rename to resources/fixtures/recorded/languages/talon/clearCommand.yml diff --git a/data/fixtures/recorded/languages/talon/clearComment.yml b/resources/fixtures/recorded/languages/talon/clearComment.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearComment.yml rename to resources/fixtures/recorded/languages/talon/clearComment.yml diff --git a/data/fixtures/recorded/languages/talon/clearCondition.yml b/resources/fixtures/recorded/languages/talon/clearCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCondition.yml rename to resources/fixtures/recorded/languages/talon/clearCondition.yml diff --git a/data/fixtures/recorded/languages/talon/clearCoreCommand.yml b/resources/fixtures/recorded/languages/talon/clearCoreCommand.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCoreCommand.yml rename to resources/fixtures/recorded/languages/talon/clearCoreCommand.yml diff --git a/data/fixtures/recorded/languages/talon/clearCoreEveryCommand.yml b/resources/fixtures/recorded/languages/talon/clearCoreEveryCommand.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearCoreEveryCommand.yml rename to resources/fixtures/recorded/languages/talon/clearCoreEveryCommand.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryArg.yml b/resources/fixtures/recorded/languages/talon/clearEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryArg.yml rename to resources/fixtures/recorded/languages/talon/clearEveryArg.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryArg2.yml b/resources/fixtures/recorded/languages/talon/clearEveryArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryArg2.yml rename to resources/fixtures/recorded/languages/talon/clearEveryArg2.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryArg3.yml b/resources/fixtures/recorded/languages/talon/clearEveryArg3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryArg3.yml rename to resources/fixtures/recorded/languages/talon/clearEveryArg3.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryCommand.yml b/resources/fixtures/recorded/languages/talon/clearEveryCommand.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryCommand.yml rename to resources/fixtures/recorded/languages/talon/clearEveryCommand.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryKey.yml b/resources/fixtures/recorded/languages/talon/clearEveryKey.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryKey.yml rename to resources/fixtures/recorded/languages/talon/clearEveryKey.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryKey2.yml b/resources/fixtures/recorded/languages/talon/clearEveryKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryKey2.yml rename to resources/fixtures/recorded/languages/talon/clearEveryKey2.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryName.yml b/resources/fixtures/recorded/languages/talon/clearEveryName.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryName.yml rename to resources/fixtures/recorded/languages/talon/clearEveryName.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryName2.yml b/resources/fixtures/recorded/languages/talon/clearEveryName2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryName2.yml rename to resources/fixtures/recorded/languages/talon/clearEveryName2.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryState.yml b/resources/fixtures/recorded/languages/talon/clearEveryState.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryState.yml rename to resources/fixtures/recorded/languages/talon/clearEveryState.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryState2.yml b/resources/fixtures/recorded/languages/talon/clearEveryState2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryState2.yml rename to resources/fixtures/recorded/languages/talon/clearEveryState2.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryState3.yml b/resources/fixtures/recorded/languages/talon/clearEveryState3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryState3.yml rename to resources/fixtures/recorded/languages/talon/clearEveryState3.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryState4.yml b/resources/fixtures/recorded/languages/talon/clearEveryState4.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryState4.yml rename to resources/fixtures/recorded/languages/talon/clearEveryState4.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryValue.yml b/resources/fixtures/recorded/languages/talon/clearEveryValue.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryValue.yml rename to resources/fixtures/recorded/languages/talon/clearEveryValue.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryValue2.yml b/resources/fixtures/recorded/languages/talon/clearEveryValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryValue2.yml rename to resources/fixtures/recorded/languages/talon/clearEveryValue2.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryValue3.yml b/resources/fixtures/recorded/languages/talon/clearEveryValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryValue3.yml rename to resources/fixtures/recorded/languages/talon/clearEveryValue3.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryValue4.yml b/resources/fixtures/recorded/languages/talon/clearEveryValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryValue4.yml rename to resources/fixtures/recorded/languages/talon/clearEveryValue4.yml diff --git a/data/fixtures/recorded/languages/talon/clearEveryValue5.yml b/resources/fixtures/recorded/languages/talon/clearEveryValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearEveryValue5.yml rename to resources/fixtures/recorded/languages/talon/clearEveryValue5.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey.yml b/resources/fixtures/recorded/languages/talon/clearKey.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey.yml rename to resources/fixtures/recorded/languages/talon/clearKey.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey2.yml b/resources/fixtures/recorded/languages/talon/clearKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey2.yml rename to resources/fixtures/recorded/languages/talon/clearKey2.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey3.yml b/resources/fixtures/recorded/languages/talon/clearKey3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey3.yml rename to resources/fixtures/recorded/languages/talon/clearKey3.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey5.yml b/resources/fixtures/recorded/languages/talon/clearKey5.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey5.yml rename to resources/fixtures/recorded/languages/talon/clearKey5.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey6.yml b/resources/fixtures/recorded/languages/talon/clearKey6.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey6.yml rename to resources/fixtures/recorded/languages/talon/clearKey6.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey7.yml b/resources/fixtures/recorded/languages/talon/clearKey7.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey7.yml rename to resources/fixtures/recorded/languages/talon/clearKey7.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey8.yml b/resources/fixtures/recorded/languages/talon/clearKey8.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey8.yml rename to resources/fixtures/recorded/languages/talon/clearKey8.yml diff --git a/data/fixtures/recorded/languages/talon/clearKey9.yml b/resources/fixtures/recorded/languages/talon/clearKey9.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearKey9.yml rename to resources/fixtures/recorded/languages/talon/clearKey9.yml diff --git a/data/fixtures/recorded/languages/talon/clearName.yml b/resources/fixtures/recorded/languages/talon/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName.yml rename to resources/fixtures/recorded/languages/talon/clearName.yml diff --git a/data/fixtures/recorded/languages/talon/clearName2.yml b/resources/fixtures/recorded/languages/talon/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName2.yml rename to resources/fixtures/recorded/languages/talon/clearName2.yml diff --git a/data/fixtures/recorded/languages/talon/clearName3.yml b/resources/fixtures/recorded/languages/talon/clearName3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName3.yml rename to resources/fixtures/recorded/languages/talon/clearName3.yml diff --git a/data/fixtures/recorded/languages/talon/clearName4.yml b/resources/fixtures/recorded/languages/talon/clearName4.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName4.yml rename to resources/fixtures/recorded/languages/talon/clearName4.yml diff --git a/data/fixtures/recorded/languages/talon/clearName5.yml b/resources/fixtures/recorded/languages/talon/clearName5.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName5.yml rename to resources/fixtures/recorded/languages/talon/clearName5.yml diff --git a/data/fixtures/recorded/languages/talon/clearName6.yml b/resources/fixtures/recorded/languages/talon/clearName6.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName6.yml rename to resources/fixtures/recorded/languages/talon/clearName6.yml diff --git a/data/fixtures/recorded/languages/talon/clearName7.yml b/resources/fixtures/recorded/languages/talon/clearName7.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName7.yml rename to resources/fixtures/recorded/languages/talon/clearName7.yml diff --git a/data/fixtures/recorded/languages/talon/clearName8.yml b/resources/fixtures/recorded/languages/talon/clearName8.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearName8.yml rename to resources/fixtures/recorded/languages/talon/clearName8.yml diff --git a/data/fixtures/recorded/languages/talon/clearRound.yml b/resources/fixtures/recorded/languages/talon/clearRound.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearRound.yml rename to resources/fixtures/recorded/languages/talon/clearRound.yml diff --git a/data/fixtures/recorded/languages/talon/clearRound2.yml b/resources/fixtures/recorded/languages/talon/clearRound2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearRound2.yml rename to resources/fixtures/recorded/languages/talon/clearRound2.yml diff --git a/data/fixtures/recorded/languages/talon/clearState.yml b/resources/fixtures/recorded/languages/talon/clearState.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState.yml rename to resources/fixtures/recorded/languages/talon/clearState.yml diff --git a/data/fixtures/recorded/languages/talon/clearState10.yml b/resources/fixtures/recorded/languages/talon/clearState10.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState10.yml rename to resources/fixtures/recorded/languages/talon/clearState10.yml diff --git a/data/fixtures/recorded/languages/talon/clearState11.yml b/resources/fixtures/recorded/languages/talon/clearState11.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState11.yml rename to resources/fixtures/recorded/languages/talon/clearState11.yml diff --git a/data/fixtures/recorded/languages/talon/clearState12.yml b/resources/fixtures/recorded/languages/talon/clearState12.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState12.yml rename to resources/fixtures/recorded/languages/talon/clearState12.yml diff --git a/data/fixtures/recorded/languages/talon/clearState13.yml b/resources/fixtures/recorded/languages/talon/clearState13.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState13.yml rename to resources/fixtures/recorded/languages/talon/clearState13.yml diff --git a/data/fixtures/recorded/languages/talon/clearState14.yml b/resources/fixtures/recorded/languages/talon/clearState14.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState14.yml rename to resources/fixtures/recorded/languages/talon/clearState14.yml diff --git a/data/fixtures/recorded/languages/talon/clearState2.yml b/resources/fixtures/recorded/languages/talon/clearState2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState2.yml rename to resources/fixtures/recorded/languages/talon/clearState2.yml diff --git a/data/fixtures/recorded/languages/talon/clearState3.yml b/resources/fixtures/recorded/languages/talon/clearState3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState3.yml rename to resources/fixtures/recorded/languages/talon/clearState3.yml diff --git a/data/fixtures/recorded/languages/talon/clearState4.yml b/resources/fixtures/recorded/languages/talon/clearState4.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState4.yml rename to resources/fixtures/recorded/languages/talon/clearState4.yml diff --git a/data/fixtures/recorded/languages/talon/clearState5.yml b/resources/fixtures/recorded/languages/talon/clearState5.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState5.yml rename to resources/fixtures/recorded/languages/talon/clearState5.yml diff --git a/data/fixtures/recorded/languages/talon/clearState6.yml b/resources/fixtures/recorded/languages/talon/clearState6.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState6.yml rename to resources/fixtures/recorded/languages/talon/clearState6.yml diff --git a/data/fixtures/recorded/languages/talon/clearState7.yml b/resources/fixtures/recorded/languages/talon/clearState7.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState7.yml rename to resources/fixtures/recorded/languages/talon/clearState7.yml diff --git a/data/fixtures/recorded/languages/talon/clearState8.yml b/resources/fixtures/recorded/languages/talon/clearState8.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState8.yml rename to resources/fixtures/recorded/languages/talon/clearState8.yml diff --git a/data/fixtures/recorded/languages/talon/clearState9.yml b/resources/fixtures/recorded/languages/talon/clearState9.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearState9.yml rename to resources/fixtures/recorded/languages/talon/clearState9.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue.yml b/resources/fixtures/recorded/languages/talon/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue.yml rename to resources/fixtures/recorded/languages/talon/clearValue.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue10.yml b/resources/fixtures/recorded/languages/talon/clearValue10.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue10.yml rename to resources/fixtures/recorded/languages/talon/clearValue10.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue11.yml b/resources/fixtures/recorded/languages/talon/clearValue11.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue11.yml rename to resources/fixtures/recorded/languages/talon/clearValue11.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue2.yml b/resources/fixtures/recorded/languages/talon/clearValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue2.yml rename to resources/fixtures/recorded/languages/talon/clearValue2.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue3.yml b/resources/fixtures/recorded/languages/talon/clearValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue3.yml rename to resources/fixtures/recorded/languages/talon/clearValue3.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue4.yml b/resources/fixtures/recorded/languages/talon/clearValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue4.yml rename to resources/fixtures/recorded/languages/talon/clearValue4.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue5.yml b/resources/fixtures/recorded/languages/talon/clearValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue5.yml rename to resources/fixtures/recorded/languages/talon/clearValue5.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue6.yml b/resources/fixtures/recorded/languages/talon/clearValue6.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue6.yml rename to resources/fixtures/recorded/languages/talon/clearValue6.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue7.yml b/resources/fixtures/recorded/languages/talon/clearValue7.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue7.yml rename to resources/fixtures/recorded/languages/talon/clearValue7.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue8.yml b/resources/fixtures/recorded/languages/talon/clearValue8.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue8.yml rename to resources/fixtures/recorded/languages/talon/clearValue8.yml diff --git a/data/fixtures/recorded/languages/talon/clearValue9.yml b/resources/fixtures/recorded/languages/talon/clearValue9.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/clearValue9.yml rename to resources/fixtures/recorded/languages/talon/clearValue9.yml diff --git a/data/fixtures/recorded/languages/talon/cloneCommand.yml b/resources/fixtures/recorded/languages/talon/cloneCommand.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/cloneCommand.yml rename to resources/fixtures/recorded/languages/talon/cloneCommand.yml diff --git a/data/fixtures/recorded/languages/talon/pourArg.yml b/resources/fixtures/recorded/languages/talon/pourArg.yml similarity index 100% rename from data/fixtures/recorded/languages/talon/pourArg.yml rename to resources/fixtures/recorded/languages/talon/pourArg.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCallee.yml b/resources/fixtures/recorded/languages/typescript/changeCallee.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCallee.yml rename to resources/fixtures/recorded/languages/typescript/changeCallee.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCallee3.yml b/resources/fixtures/recorded/languages/typescript/changeCallee3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCallee3.yml rename to resources/fixtures/recorded/languages/typescript/changeCallee3.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCallee4.yml b/resources/fixtures/recorded/languages/typescript/changeCallee4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCallee4.yml rename to resources/fixtures/recorded/languages/typescript/changeCallee4.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCallee5.yml b/resources/fixtures/recorded/languages/typescript/changeCallee5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCallee5.yml rename to resources/fixtures/recorded/languages/typescript/changeCallee5.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCallee6.yml b/resources/fixtures/recorded/languages/typescript/changeCallee6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCallee6.yml rename to resources/fixtures/recorded/languages/typescript/changeCallee6.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCallee7.yml b/resources/fixtures/recorded/languages/typescript/changeCallee7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCallee7.yml rename to resources/fixtures/recorded/languages/typescript/changeCallee7.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCalleeParen.yml b/resources/fixtures/recorded/languages/typescript/changeCalleeParen.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCalleeParen.yml rename to resources/fixtures/recorded/languages/typescript/changeCalleeParen.yml diff --git a/data/fixtures/recorded/languages/typescript/changeCalleeParen2.yml b/resources/fixtures/recorded/languages/typescript/changeCalleeParen2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeCalleeParen2.yml rename to resources/fixtures/recorded/languages/typescript/changeCalleeParen2.yml diff --git a/data/fixtures/recorded/languages/typescript/changeEveryArg.yml b/resources/fixtures/recorded/languages/typescript/changeEveryArg.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeEveryArg.yml rename to resources/fixtures/recorded/languages/typescript/changeEveryArg.yml diff --git a/data/fixtures/recorded/languages/typescript/changeEveryArg2.yml b/resources/fixtures/recorded/languages/typescript/changeEveryArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeEveryArg2.yml rename to resources/fixtures/recorded/languages/typescript/changeEveryArg2.yml diff --git a/data/fixtures/recorded/languages/typescript/changeEveryType.yml b/resources/fixtures/recorded/languages/typescript/changeEveryType.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeEveryType.yml rename to resources/fixtures/recorded/languages/typescript/changeEveryType.yml diff --git a/data/fixtures/recorded/languages/typescript/changeEveryType2.yml b/resources/fixtures/recorded/languages/typescript/changeEveryType2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeEveryType2.yml rename to resources/fixtures/recorded/languages/typescript/changeEveryType2.yml diff --git a/data/fixtures/recorded/languages/typescript/changeEveryType3.yml b/resources/fixtures/recorded/languages/typescript/changeEveryType3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeEveryType3.yml rename to resources/fixtures/recorded/languages/typescript/changeEveryType3.yml diff --git a/data/fixtures/recorded/languages/typescript/changeFunk.yml b/resources/fixtures/recorded/languages/typescript/changeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeFunk.yml rename to resources/fixtures/recorded/languages/typescript/changeFunk.yml diff --git a/data/fixtures/recorded/languages/typescript/changeInside.yml b/resources/fixtures/recorded/languages/typescript/changeInside.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeInside.yml rename to resources/fixtures/recorded/languages/typescript/changeInside.yml diff --git a/data/fixtures/recorded/languages/typescript/changeKey.yml b/resources/fixtures/recorded/languages/typescript/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeKey.yml rename to resources/fixtures/recorded/languages/typescript/changeKey.yml diff --git a/data/fixtures/recorded/languages/typescript/changeKey2.yml b/resources/fixtures/recorded/languages/typescript/changeKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeKey2.yml rename to resources/fixtures/recorded/languages/typescript/changeKey2.yml diff --git a/data/fixtures/recorded/languages/typescript/changeKey3.yml b/resources/fixtures/recorded/languages/typescript/changeKey3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeKey3.yml rename to resources/fixtures/recorded/languages/typescript/changeKey3.yml diff --git a/data/fixtures/recorded/languages/typescript/changeName.yml b/resources/fixtures/recorded/languages/typescript/changeName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeName.yml rename to resources/fixtures/recorded/languages/typescript/changeName.yml diff --git a/data/fixtures/recorded/languages/typescript/changeName2.yml b/resources/fixtures/recorded/languages/typescript/changeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeName2.yml rename to resources/fixtures/recorded/languages/typescript/changeName2.yml diff --git a/data/fixtures/recorded/languages/typescript/changeName3.yml b/resources/fixtures/recorded/languages/typescript/changeName3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeName3.yml rename to resources/fixtures/recorded/languages/typescript/changeName3.yml diff --git a/data/fixtures/recorded/languages/typescript/changeName4.yml b/resources/fixtures/recorded/languages/typescript/changeName4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeName4.yml rename to resources/fixtures/recorded/languages/typescript/changeName4.yml diff --git a/data/fixtures/recorded/languages/typescript/changeName5.yml b/resources/fixtures/recorded/languages/typescript/changeName5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeName5.yml rename to resources/fixtures/recorded/languages/typescript/changeName5.yml diff --git a/data/fixtures/recorded/languages/typescript/changeName6.yml b/resources/fixtures/recorded/languages/typescript/changeName6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeName6.yml rename to resources/fixtures/recorded/languages/typescript/changeName6.yml diff --git a/data/fixtures/recorded/languages/typescript/changeNextValue.yml b/resources/fixtures/recorded/languages/typescript/changeNextValue.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeNextValue.yml rename to resources/fixtures/recorded/languages/typescript/changeNextValue.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType10.yml b/resources/fixtures/recorded/languages/typescript/changeType10.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType10.yml rename to resources/fixtures/recorded/languages/typescript/changeType10.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType11.yml b/resources/fixtures/recorded/languages/typescript/changeType11.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType11.yml rename to resources/fixtures/recorded/languages/typescript/changeType11.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType12.yml b/resources/fixtures/recorded/languages/typescript/changeType12.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType12.yml rename to resources/fixtures/recorded/languages/typescript/changeType12.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType13.yml b/resources/fixtures/recorded/languages/typescript/changeType13.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType13.yml rename to resources/fixtures/recorded/languages/typescript/changeType13.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType14.yml b/resources/fixtures/recorded/languages/typescript/changeType14.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType14.yml rename to resources/fixtures/recorded/languages/typescript/changeType14.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType15.yml b/resources/fixtures/recorded/languages/typescript/changeType15.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType15.yml rename to resources/fixtures/recorded/languages/typescript/changeType15.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType16.yml b/resources/fixtures/recorded/languages/typescript/changeType16.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType16.yml rename to resources/fixtures/recorded/languages/typescript/changeType16.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType17.yml b/resources/fixtures/recorded/languages/typescript/changeType17.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType17.yml rename to resources/fixtures/recorded/languages/typescript/changeType17.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType18.yml b/resources/fixtures/recorded/languages/typescript/changeType18.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType18.yml rename to resources/fixtures/recorded/languages/typescript/changeType18.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType19.yml b/resources/fixtures/recorded/languages/typescript/changeType19.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType19.yml rename to resources/fixtures/recorded/languages/typescript/changeType19.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType2.yml b/resources/fixtures/recorded/languages/typescript/changeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType2.yml rename to resources/fixtures/recorded/languages/typescript/changeType2.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType20.yml b/resources/fixtures/recorded/languages/typescript/changeType20.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType20.yml rename to resources/fixtures/recorded/languages/typescript/changeType20.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType21.yml b/resources/fixtures/recorded/languages/typescript/changeType21.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType21.yml rename to resources/fixtures/recorded/languages/typescript/changeType21.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType22.yml b/resources/fixtures/recorded/languages/typescript/changeType22.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType22.yml rename to resources/fixtures/recorded/languages/typescript/changeType22.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType23.yml b/resources/fixtures/recorded/languages/typescript/changeType23.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType23.yml rename to resources/fixtures/recorded/languages/typescript/changeType23.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType3.yml b/resources/fixtures/recorded/languages/typescript/changeType3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType3.yml rename to resources/fixtures/recorded/languages/typescript/changeType3.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType4.yml b/resources/fixtures/recorded/languages/typescript/changeType4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType4.yml rename to resources/fixtures/recorded/languages/typescript/changeType4.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType6.yml b/resources/fixtures/recorded/languages/typescript/changeType6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType6.yml rename to resources/fixtures/recorded/languages/typescript/changeType6.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType7.yml b/resources/fixtures/recorded/languages/typescript/changeType7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType7.yml rename to resources/fixtures/recorded/languages/typescript/changeType7.yml diff --git a/data/fixtures/recorded/languages/typescript/changeType8.yml b/resources/fixtures/recorded/languages/typescript/changeType8.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeType8.yml rename to resources/fixtures/recorded/languages/typescript/changeType8.yml diff --git a/data/fixtures/recorded/languages/typescript/changeValue.yml b/resources/fixtures/recorded/languages/typescript/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeValue.yml rename to resources/fixtures/recorded/languages/typescript/changeValue.yml diff --git a/data/fixtures/recorded/languages/typescript/changeValue2.yml b/resources/fixtures/recorded/languages/typescript/changeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeValue2.yml rename to resources/fixtures/recorded/languages/typescript/changeValue2.yml diff --git a/data/fixtures/recorded/languages/typescript/changeValue3.yml b/resources/fixtures/recorded/languages/typescript/changeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeValue3.yml rename to resources/fixtures/recorded/languages/typescript/changeValue3.yml diff --git a/data/fixtures/recorded/languages/typescript/changeValue4.yml b/resources/fixtures/recorded/languages/typescript/changeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeValue4.yml rename to resources/fixtures/recorded/languages/typescript/changeValue4.yml diff --git a/data/fixtures/recorded/languages/typescript/changeValue5.yml b/resources/fixtures/recorded/languages/typescript/changeValue5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/changeValue5.yml rename to resources/fixtures/recorded/languages/typescript/changeValue5.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckCoreElement.yml b/resources/fixtures/recorded/languages/typescript/chuckCoreElement.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckCoreElement.yml rename to resources/fixtures/recorded/languages/typescript/chuckCoreElement.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckKey.yml b/resources/fixtures/recorded/languages/typescript/chuckKey.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckKey.yml rename to resources/fixtures/recorded/languages/typescript/chuckKey.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckKey2.yml b/resources/fixtures/recorded/languages/typescript/chuckKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckKey2.yml rename to resources/fixtures/recorded/languages/typescript/chuckKey2.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckName.yml b/resources/fixtures/recorded/languages/typescript/chuckName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckName.yml rename to resources/fixtures/recorded/languages/typescript/chuckName.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckState.yml b/resources/fixtures/recorded/languages/typescript/chuckState.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckState.yml rename to resources/fixtures/recorded/languages/typescript/chuckState.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckState2.yml b/resources/fixtures/recorded/languages/typescript/chuckState2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckState2.yml rename to resources/fixtures/recorded/languages/typescript/chuckState2.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckType.yml b/resources/fixtures/recorded/languages/typescript/chuckType.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckType.yml rename to resources/fixtures/recorded/languages/typescript/chuckType.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckType2.yml b/resources/fixtures/recorded/languages/typescript/chuckType2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckType2.yml rename to resources/fixtures/recorded/languages/typescript/chuckType2.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckType3.yml b/resources/fixtures/recorded/languages/typescript/chuckType3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckType3.yml rename to resources/fixtures/recorded/languages/typescript/chuckType3.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckType4.yml b/resources/fixtures/recorded/languages/typescript/chuckType4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckType4.yml rename to resources/fixtures/recorded/languages/typescript/chuckType4.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckType6.yml b/resources/fixtures/recorded/languages/typescript/chuckType6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckType6.yml rename to resources/fixtures/recorded/languages/typescript/chuckType6.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckTypeRam.yml b/resources/fixtures/recorded/languages/typescript/chuckTypeRam.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckTypeRam.yml rename to resources/fixtures/recorded/languages/typescript/chuckTypeRam.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckTypeSoon.yml b/resources/fixtures/recorded/languages/typescript/chuckTypeSoon.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckTypeSoon.yml rename to resources/fixtures/recorded/languages/typescript/chuckTypeSoon.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckTypeSoon2.yml b/resources/fixtures/recorded/languages/typescript/chuckTypeSoon2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckTypeSoon2.yml rename to resources/fixtures/recorded/languages/typescript/chuckTypeSoon2.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckTypeTrap.yml b/resources/fixtures/recorded/languages/typescript/chuckTypeTrap.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckTypeTrap.yml rename to resources/fixtures/recorded/languages/typescript/chuckTypeTrap.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckTypeYank.yml b/resources/fixtures/recorded/languages/typescript/chuckTypeYank.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckTypeYank.yml rename to resources/fixtures/recorded/languages/typescript/chuckTypeYank.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckValue.yml b/resources/fixtures/recorded/languages/typescript/chuckValue.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckValue.yml rename to resources/fixtures/recorded/languages/typescript/chuckValue.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckValue2.yml b/resources/fixtures/recorded/languages/typescript/chuckValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckValue2.yml rename to resources/fixtures/recorded/languages/typescript/chuckValue2.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckValue3.yml b/resources/fixtures/recorded/languages/typescript/chuckValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckValue3.yml rename to resources/fixtures/recorded/languages/typescript/chuckValue3.yml diff --git a/data/fixtures/recorded/languages/typescript/chuckValue4.yml b/resources/fixtures/recorded/languages/typescript/chuckValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/chuckValue4.yml rename to resources/fixtures/recorded/languages/typescript/chuckValue4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessAir.yml b/resources/fixtures/recorded/languages/typescript/clearAccessAir.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessAir.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessAir.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessAir2.yml b/resources/fixtures/recorded/languages/typescript/clearAccessAir2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessAir2.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessAir2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessAir3.yml b/resources/fixtures/recorded/languages/typescript/clearAccessAir3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessAir3.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessAir3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessBat.yml b/resources/fixtures/recorded/languages/typescript/clearAccessBat.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessBat.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessBat.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessBat2.yml b/resources/fixtures/recorded/languages/typescript/clearAccessBat2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessBat2.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessBat2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessBat3.yml b/resources/fixtures/recorded/languages/typescript/clearAccessBat3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessBat3.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessBat3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessBat4.yml b/resources/fixtures/recorded/languages/typescript/clearAccessBat4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessBat4.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessBat4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessBat5.yml b/resources/fixtures/recorded/languages/typescript/clearAccessBat5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessBat5.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessBat5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessCap.yml b/resources/fixtures/recorded/languages/typescript/clearAccessCap.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessCap.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessCap.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessCap2.yml b/resources/fixtures/recorded/languages/typescript/clearAccessCap2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessCap2.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessCap2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessCap3.yml b/resources/fixtures/recorded/languages/typescript/clearAccessCap3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessCap3.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessCap3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessDrum.yml b/resources/fixtures/recorded/languages/typescript/clearAccessDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessDrum.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessDrum.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessDrum2.yml b/resources/fixtures/recorded/languages/typescript/clearAccessDrum2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessDrum2.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessDrum2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessEach.yml b/resources/fixtures/recorded/languages/typescript/clearAccessEach.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessEach.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessEach.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessEach2.yml b/resources/fixtures/recorded/languages/typescript/clearAccessEach2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessEach2.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessEach2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearAccessFine.yml b/resources/fixtures/recorded/languages/typescript/clearAccessFine.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearAccessFine.yml rename to resources/fixtures/recorded/languages/typescript/clearAccessFine.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch.yml b/resources/fixtures/recorded/languages/typescript/clearBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch10.yml b/resources/fixtures/recorded/languages/typescript/clearBranch10.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch10.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch10.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch11.yml b/resources/fixtures/recorded/languages/typescript/clearBranch11.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch11.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch11.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch12.yml b/resources/fixtures/recorded/languages/typescript/clearBranch12.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch12.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch12.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch2.yml b/resources/fixtures/recorded/languages/typescript/clearBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch2.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch3.yml b/resources/fixtures/recorded/languages/typescript/clearBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch3.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch4.yml b/resources/fixtures/recorded/languages/typescript/clearBranch4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch4.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch5.yml b/resources/fixtures/recorded/languages/typescript/clearBranch5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch5.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch6.yml b/resources/fixtures/recorded/languages/typescript/clearBranch6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch6.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch6.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch7.yml b/resources/fixtures/recorded/languages/typescript/clearBranch7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch7.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch7.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch8.yml b/resources/fixtures/recorded/languages/typescript/clearBranch8.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch8.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch8.yml diff --git a/data/fixtures/recorded/languages/typescript/clearBranch9.yml b/resources/fixtures/recorded/languages/typescript/clearBranch9.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearBranch9.yml rename to resources/fixtures/recorded/languages/typescript/clearBranch9.yml diff --git a/data/fixtures/recorded/languages/typescript/clearClass.yml b/resources/fixtures/recorded/languages/typescript/clearClass.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearClass.yml rename to resources/fixtures/recorded/languages/typescript/clearClass.yml diff --git a/data/fixtures/recorded/languages/typescript/clearClass2.yml b/resources/fixtures/recorded/languages/typescript/clearClass2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearClass2.yml rename to resources/fixtures/recorded/languages/typescript/clearClass2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearClass3.yml b/resources/fixtures/recorded/languages/typescript/clearClass3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearClass3.yml rename to resources/fixtures/recorded/languages/typescript/clearClass3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearClass4.yml b/resources/fixtures/recorded/languages/typescript/clearClass4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearClass4.yml rename to resources/fixtures/recorded/languages/typescript/clearClass4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearCondition.yml b/resources/fixtures/recorded/languages/typescript/clearCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearCondition.yml rename to resources/fixtures/recorded/languages/typescript/clearCondition.yml diff --git a/data/fixtures/recorded/languages/typescript/clearCondition2.yml b/resources/fixtures/recorded/languages/typescript/clearCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearCondition2.yml rename to resources/fixtures/recorded/languages/typescript/clearCondition2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearCoreElement.yml b/resources/fixtures/recorded/languages/typescript/clearCoreElement.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearCoreElement.yml rename to resources/fixtures/recorded/languages/typescript/clearCoreElement.yml diff --git a/data/fixtures/recorded/languages/typescript/clearCoreElement2.yml b/resources/fixtures/recorded/languages/typescript/clearCoreElement2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearCoreElement2.yml rename to resources/fixtures/recorded/languages/typescript/clearCoreElement2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearCoreElement3.yml b/resources/fixtures/recorded/languages/typescript/clearCoreElement3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearCoreElement3.yml rename to resources/fixtures/recorded/languages/typescript/clearCoreElement3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearElement.yml b/resources/fixtures/recorded/languages/typescript/clearElement.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearElement.yml rename to resources/fixtures/recorded/languages/typescript/clearElement.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEndTag.yml b/resources/fixtures/recorded/languages/typescript/clearEndTag.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEndTag.yml rename to resources/fixtures/recorded/languages/typescript/clearEndTag.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryAccessAir.yml b/resources/fixtures/recorded/languages/typescript/clearEveryAccessAir.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryAccessAir.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryAccessAir.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryElement.yml b/resources/fixtures/recorded/languages/typescript/clearEveryElement.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryElement.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryElement.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryElement2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryElement2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryElement2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryElement2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryElement3.yml b/resources/fixtures/recorded/languages/typescript/clearEveryElement3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryElement3.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryElement3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryElement4.yml b/resources/fixtures/recorded/languages/typescript/clearEveryElement4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryElement4.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryElement4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryEndTag.yml b/resources/fixtures/recorded/languages/typescript/clearEveryEndTag.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryEndTag.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryEndTag.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryEndTag2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryEndTag2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryEndTag2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryEndTag2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunk.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunk.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunk.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunk2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunk2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunk2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunk3.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunk3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunk3.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunk3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunk4.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunk4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunk4.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunk4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunk5.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunk5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunk5.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunk5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunk6.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunk6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunk6.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunk6.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunkName.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunkName.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunkName.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryFunkName2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryFunkName2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryFunkName2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryFunkName2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryKey.yml b/resources/fixtures/recorded/languages/typescript/clearEveryKey.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryKey.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryKey.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryKey2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryKey2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryKey2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryName.yml b/resources/fixtures/recorded/languages/typescript/clearEveryName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryName.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryName.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryName2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryName2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryName2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryName2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryName3.yml b/resources/fixtures/recorded/languages/typescript/clearEveryName3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryName3.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryName3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryName4.yml b/resources/fixtures/recorded/languages/typescript/clearEveryName4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryName4.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryName4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryName5.yml b/resources/fixtures/recorded/languages/typescript/clearEveryName5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryName5.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryName5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryName6.yml b/resources/fixtures/recorded/languages/typescript/clearEveryName6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryName6.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryName6.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryStartTag.yml b/resources/fixtures/recorded/languages/typescript/clearEveryStartTag.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryStartTag.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryStartTag.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryStartTag2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryStartTag2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryStartTag2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryStartTag2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryTags.yml b/resources/fixtures/recorded/languages/typescript/clearEveryTags.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryTags.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryTags.yml diff --git a/data/fixtures/recorded/languages/typescript/clearEveryTags2.yml b/resources/fixtures/recorded/languages/typescript/clearEveryTags2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearEveryTags2.yml rename to resources/fixtures/recorded/languages/typescript/clearEveryTags2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk.yml b/resources/fixtures/recorded/languages/typescript/clearFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk10.yml b/resources/fixtures/recorded/languages/typescript/clearFunk10.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk10.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk10.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk11.yml b/resources/fixtures/recorded/languages/typescript/clearFunk11.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk11.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk11.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk12.yml b/resources/fixtures/recorded/languages/typescript/clearFunk12.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk12.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk12.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk13.yml b/resources/fixtures/recorded/languages/typescript/clearFunk13.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk13.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk13.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk14.yml b/resources/fixtures/recorded/languages/typescript/clearFunk14.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk14.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk14.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk15.yml b/resources/fixtures/recorded/languages/typescript/clearFunk15.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk15.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk15.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk16.yml b/resources/fixtures/recorded/languages/typescript/clearFunk16.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk16.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk16.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk17.yml b/resources/fixtures/recorded/languages/typescript/clearFunk17.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk17.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk17.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk18.yml b/resources/fixtures/recorded/languages/typescript/clearFunk18.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk18.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk18.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk2.yml b/resources/fixtures/recorded/languages/typescript/clearFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk2.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk3.yml b/resources/fixtures/recorded/languages/typescript/clearFunk3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk3.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk4.yml b/resources/fixtures/recorded/languages/typescript/clearFunk4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk4.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk5.yml b/resources/fixtures/recorded/languages/typescript/clearFunk5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk5.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk6.yml b/resources/fixtures/recorded/languages/typescript/clearFunk6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk6.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk6.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk7.yml b/resources/fixtures/recorded/languages/typescript/clearFunk7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk7.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk7.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk8.yml b/resources/fixtures/recorded/languages/typescript/clearFunk8.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk8.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk8.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunk9.yml b/resources/fixtures/recorded/languages/typescript/clearFunk9.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunk9.yml rename to resources/fixtures/recorded/languages/typescript/clearFunk9.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunkName.yml b/resources/fixtures/recorded/languages/typescript/clearFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunkName.yml rename to resources/fixtures/recorded/languages/typescript/clearFunkName.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunkName2.yml b/resources/fixtures/recorded/languages/typescript/clearFunkName2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunkName2.yml rename to resources/fixtures/recorded/languages/typescript/clearFunkName2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunkName3.yml b/resources/fixtures/recorded/languages/typescript/clearFunkName3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunkName3.yml rename to resources/fixtures/recorded/languages/typescript/clearFunkName3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunkName4.yml b/resources/fixtures/recorded/languages/typescript/clearFunkName4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunkName4.yml rename to resources/fixtures/recorded/languages/typescript/clearFunkName4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunkName5.yml b/resources/fixtures/recorded/languages/typescript/clearFunkName5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunkName5.yml rename to resources/fixtures/recorded/languages/typescript/clearFunkName5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunkName6.yml b/resources/fixtures/recorded/languages/typescript/clearFunkName6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunkName6.yml rename to resources/fixtures/recorded/languages/typescript/clearFunkName6.yml diff --git a/data/fixtures/recorded/languages/typescript/clearFunkName7.yml b/resources/fixtures/recorded/languages/typescript/clearFunkName7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearFunkName7.yml rename to resources/fixtures/recorded/languages/typescript/clearFunkName7.yml diff --git a/data/fixtures/recorded/languages/typescript/clearItem.yml b/resources/fixtures/recorded/languages/typescript/clearItem.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearItem.yml rename to resources/fixtures/recorded/languages/typescript/clearItem.yml diff --git a/data/fixtures/recorded/languages/typescript/clearItem2.yml b/resources/fixtures/recorded/languages/typescript/clearItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearItem2.yml rename to resources/fixtures/recorded/languages/typescript/clearItem2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearItem3.yml b/resources/fixtures/recorded/languages/typescript/clearItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearItem3.yml rename to resources/fixtures/recorded/languages/typescript/clearItem3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearItemBrace.yml b/resources/fixtures/recorded/languages/typescript/clearItemBrace.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearItemBrace.yml rename to resources/fixtures/recorded/languages/typescript/clearItemBrace.yml diff --git a/data/fixtures/recorded/languages/typescript/clearKey.yml b/resources/fixtures/recorded/languages/typescript/clearKey.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearKey.yml rename to resources/fixtures/recorded/languages/typescript/clearKey.yml diff --git a/data/fixtures/recorded/languages/typescript/clearLambda.yml b/resources/fixtures/recorded/languages/typescript/clearLambda.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearLambda.yml rename to resources/fixtures/recorded/languages/typescript/clearLambda.yml diff --git a/data/fixtures/recorded/languages/typescript/clearLambda2.yml b/resources/fixtures/recorded/languages/typescript/clearLambda2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearLambda2.yml rename to resources/fixtures/recorded/languages/typescript/clearLambda2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearLambda3.yml b/resources/fixtures/recorded/languages/typescript/clearLambda3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearLambda3.yml rename to resources/fixtures/recorded/languages/typescript/clearLambda3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearLambda4.yml b/resources/fixtures/recorded/languages/typescript/clearLambda4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearLambda4.yml rename to resources/fixtures/recorded/languages/typescript/clearLambda4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearLambda5.yml b/resources/fixtures/recorded/languages/typescript/clearLambda5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearLambda5.yml rename to resources/fixtures/recorded/languages/typescript/clearLambda5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearLambda6.yml b/resources/fixtures/recorded/languages/typescript/clearLambda6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearLambda6.yml rename to resources/fixtures/recorded/languages/typescript/clearLambda6.yml diff --git a/data/fixtures/recorded/languages/typescript/clearLambda7.yml b/resources/fixtures/recorded/languages/typescript/clearLambda7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearLambda7.yml rename to resources/fixtures/recorded/languages/typescript/clearLambda7.yml diff --git a/data/fixtures/recorded/languages/typescript/clearName.yml b/resources/fixtures/recorded/languages/typescript/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearName.yml rename to resources/fixtures/recorded/languages/typescript/clearName.yml diff --git a/data/fixtures/recorded/languages/typescript/clearName2.yml b/resources/fixtures/recorded/languages/typescript/clearName2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearName2.yml rename to resources/fixtures/recorded/languages/typescript/clearName2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearName3.yml b/resources/fixtures/recorded/languages/typescript/clearName3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearName3.yml rename to resources/fixtures/recorded/languages/typescript/clearName3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearNameTags.yml b/resources/fixtures/recorded/languages/typescript/clearNameTags.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearNameTags.yml rename to resources/fixtures/recorded/languages/typescript/clearNameTags.yml diff --git a/data/fixtures/recorded/languages/typescript/clearPair.yml b/resources/fixtures/recorded/languages/typescript/clearPair.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearPair.yml rename to resources/fixtures/recorded/languages/typescript/clearPair.yml diff --git a/data/fixtures/recorded/languages/typescript/clearStartTag.yml b/resources/fixtures/recorded/languages/typescript/clearStartTag.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearStartTag.yml rename to resources/fixtures/recorded/languages/typescript/clearStartTag.yml diff --git a/data/fixtures/recorded/languages/typescript/clearState.yml b/resources/fixtures/recorded/languages/typescript/clearState.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearState.yml rename to resources/fixtures/recorded/languages/typescript/clearState.yml diff --git a/data/fixtures/recorded/languages/typescript/clearState2.yml b/resources/fixtures/recorded/languages/typescript/clearState2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearState2.yml rename to resources/fixtures/recorded/languages/typescript/clearState2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearState3.yml b/resources/fixtures/recorded/languages/typescript/clearState3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearState3.yml rename to resources/fixtures/recorded/languages/typescript/clearState3.yml diff --git a/data/fixtures/recorded/languages/typescript/clearState4.yml b/resources/fixtures/recorded/languages/typescript/clearState4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearState4.yml rename to resources/fixtures/recorded/languages/typescript/clearState4.yml diff --git a/data/fixtures/recorded/languages/typescript/clearState5.yml b/resources/fixtures/recorded/languages/typescript/clearState5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearState5.yml rename to resources/fixtures/recorded/languages/typescript/clearState5.yml diff --git a/data/fixtures/recorded/languages/typescript/clearSubject.yml b/resources/fixtures/recorded/languages/typescript/clearSubject.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearSubject.yml rename to resources/fixtures/recorded/languages/typescript/clearSubject.yml diff --git a/data/fixtures/recorded/languages/typescript/clearSubject2.yml b/resources/fixtures/recorded/languages/typescript/clearSubject2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearSubject2.yml rename to resources/fixtures/recorded/languages/typescript/clearSubject2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTags.yml b/resources/fixtures/recorded/languages/typescript/clearTags.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTags.yml rename to resources/fixtures/recorded/languages/typescript/clearTags.yml diff --git a/data/fixtures/recorded/languages/typescript/clearType.yml b/resources/fixtures/recorded/languages/typescript/clearType.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearType.yml rename to resources/fixtures/recorded/languages/typescript/clearType.yml diff --git a/data/fixtures/recorded/languages/typescript/clearType2.yml b/resources/fixtures/recorded/languages/typescript/clearType2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearType2.yml rename to resources/fixtures/recorded/languages/typescript/clearType2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeAir.yml b/resources/fixtures/recorded/languages/typescript/clearTypeAir.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeAir.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeAir.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeBat.yml b/resources/fixtures/recorded/languages/typescript/clearTypeBat.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeBat.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeBat.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeLangle.yml b/resources/fixtures/recorded/languages/typescript/clearTypeLangle.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeLangle.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeLangle.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeNear.yml b/resources/fixtures/recorded/languages/typescript/clearTypeNear.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeNear.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeNear.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeNear2.yml b/resources/fixtures/recorded/languages/typescript/clearTypeNear2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeNear2.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeNear2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeOx.yml b/resources/fixtures/recorded/languages/typescript/clearTypeOx.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeOx.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeOx.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeOx2.yml b/resources/fixtures/recorded/languages/typescript/clearTypeOx2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeOx2.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeOx2.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeUrge.yml b/resources/fixtures/recorded/languages/typescript/clearTypeUrge.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeUrge.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeUrge.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeWhale.yml b/resources/fixtures/recorded/languages/typescript/clearTypeWhale.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeWhale.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeWhale.yml diff --git a/data/fixtures/recorded/languages/typescript/clearTypeWrangle.yml b/resources/fixtures/recorded/languages/typescript/clearTypeWrangle.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearTypeWrangle.yml rename to resources/fixtures/recorded/languages/typescript/clearTypeWrangle.yml diff --git a/data/fixtures/recorded/languages/typescript/clearValue.yml b/resources/fixtures/recorded/languages/typescript/clearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/clearValue.yml rename to resources/fixtures/recorded/languages/typescript/clearValue.yml diff --git a/data/fixtures/recorded/languages/typescript/cloneBranch.yml b/resources/fixtures/recorded/languages/typescript/cloneBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/cloneBranch.yml rename to resources/fixtures/recorded/languages/typescript/cloneBranch.yml diff --git a/data/fixtures/recorded/languages/typescript/ditchBranch.yml b/resources/fixtures/recorded/languages/typescript/ditchBranch.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/ditchBranch.yml rename to resources/fixtures/recorded/languages/typescript/ditchBranch.yml diff --git a/data/fixtures/recorded/languages/typescript/ditchBranch2.yml b/resources/fixtures/recorded/languages/typescript/ditchBranch2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/ditchBranch2.yml rename to resources/fixtures/recorded/languages/typescript/ditchBranch2.yml diff --git a/data/fixtures/recorded/languages/typescript/ditchBranch3.yml b/resources/fixtures/recorded/languages/typescript/ditchBranch3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/ditchBranch3.yml rename to resources/fixtures/recorded/languages/typescript/ditchBranch3.yml diff --git a/data/fixtures/recorded/languages/typescript/ditchFunk.yml b/resources/fixtures/recorded/languages/typescript/ditchFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/ditchFunk.yml rename to resources/fixtures/recorded/languages/typescript/ditchFunk.yml diff --git a/data/fixtures/recorded/languages/typescript/ditchFunk2.yml b/resources/fixtures/recorded/languages/typescript/ditchFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/ditchFunk2.yml rename to resources/fixtures/recorded/languages/typescript/ditchFunk2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeArg.yml b/resources/fixtures/recorded/languages/typescript/takeArg.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeArg.yml rename to resources/fixtures/recorded/languages/typescript/takeArg.yml diff --git a/data/fixtures/recorded/languages/typescript/takeArg2.yml b/resources/fixtures/recorded/languages/typescript/takeArg2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeArg2.yml rename to resources/fixtures/recorded/languages/typescript/takeArg2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeArrow.yml b/resources/fixtures/recorded/languages/typescript/takeArrow.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeArrow.yml rename to resources/fixtures/recorded/languages/typescript/takeArrow.yml diff --git a/data/fixtures/recorded/languages/typescript/takeCall.yml b/resources/fixtures/recorded/languages/typescript/takeCall.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeCall.yml rename to resources/fixtures/recorded/languages/typescript/takeCall.yml diff --git a/data/fixtures/recorded/languages/typescript/takeClass.yml b/resources/fixtures/recorded/languages/typescript/takeClass.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeClass.yml rename to resources/fixtures/recorded/languages/typescript/takeClass.yml diff --git a/data/fixtures/recorded/languages/typescript/takeClassName.yml b/resources/fixtures/recorded/languages/typescript/takeClassName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeClassName.yml rename to resources/fixtures/recorded/languages/typescript/takeClassName.yml diff --git a/data/fixtures/recorded/languages/typescript/takeComment.yml b/resources/fixtures/recorded/languages/typescript/takeComment.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeComment.yml rename to resources/fixtures/recorded/languages/typescript/takeComment.yml diff --git a/data/fixtures/recorded/languages/typescript/takeCondition.yml b/resources/fixtures/recorded/languages/typescript/takeCondition.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeCondition.yml rename to resources/fixtures/recorded/languages/typescript/takeCondition.yml diff --git a/data/fixtures/recorded/languages/typescript/takeCondition2.yml b/resources/fixtures/recorded/languages/typescript/takeCondition2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeCondition2.yml rename to resources/fixtures/recorded/languages/typescript/takeCondition2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeCondition3.yml b/resources/fixtures/recorded/languages/typescript/takeCondition3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeCondition3.yml rename to resources/fixtures/recorded/languages/typescript/takeCondition3.yml diff --git a/data/fixtures/recorded/languages/typescript/takeCoreElement.yml b/resources/fixtures/recorded/languages/typescript/takeCoreElement.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeCoreElement.yml rename to resources/fixtures/recorded/languages/typescript/takeCoreElement.yml diff --git a/data/fixtures/recorded/languages/typescript/takeCoreElement2.yml b/resources/fixtures/recorded/languages/typescript/takeCoreElement2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeCoreElement2.yml rename to resources/fixtures/recorded/languages/typescript/takeCoreElement2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccess.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccess.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccess.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccess.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessAir.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessAir.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessAir.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessAir.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessAir2.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessAir2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessAir2.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessAir2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessBat.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessBat.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessBat.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessBat.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessBat2.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessBat2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessBat2.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessBat2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessBat3.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessBat3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessBat3.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessBat3.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessCap.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessCap.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessCap.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessCap.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessCap2.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessCap2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessCap2.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessCap2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessDrum.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessDrum.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessDrum.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessDrum.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessDrum2.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessDrum2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessDrum2.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessDrum2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessEach.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessEach.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessEach.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessEach.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryAccessEach2.yml b/resources/fixtures/recorded/languages/typescript/takeEveryAccessEach2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryAccessEach2.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryAccessEach2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryArgAir.yml b/resources/fixtures/recorded/languages/typescript/takeEveryArgAir.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryArgAir.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryArgAir.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryArgBat.yml b/resources/fixtures/recorded/languages/typescript/takeEveryArgBat.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryArgBat.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryArgBat.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryArgRam.yml b/resources/fixtures/recorded/languages/typescript/takeEveryArgRam.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryArgRam.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryArgRam.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryItem.yml b/resources/fixtures/recorded/languages/typescript/takeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryItem.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryItem.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryItem2.yml b/resources/fixtures/recorded/languages/typescript/takeEveryItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryItem2.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryItem2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryItem3.yml b/resources/fixtures/recorded/languages/typescript/takeEveryItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryItem3.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryItem3.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryItem4.yml b/resources/fixtures/recorded/languages/typescript/takeEveryItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryItem4.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryItem4.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryItem5.yml b/resources/fixtures/recorded/languages/typescript/takeEveryItem5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryItem5.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryItem5.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryValue.yml b/resources/fixtures/recorded/languages/typescript/takeEveryValue.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryValue.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryValue.yml diff --git a/data/fixtures/recorded/languages/typescript/takeEveryValue2.yml b/resources/fixtures/recorded/languages/typescript/takeEveryValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeEveryValue2.yml rename to resources/fixtures/recorded/languages/typescript/takeEveryValue2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk.yml b/resources/fixtures/recorded/languages/typescript/takeFunk.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk10.yml b/resources/fixtures/recorded/languages/typescript/takeFunk10.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk10.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk10.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk11.yml b/resources/fixtures/recorded/languages/typescript/takeFunk11.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk11.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk11.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk12.yml b/resources/fixtures/recorded/languages/typescript/takeFunk12.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk12.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk12.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk13.yml b/resources/fixtures/recorded/languages/typescript/takeFunk13.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk13.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk13.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk2.yml b/resources/fixtures/recorded/languages/typescript/takeFunk2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk2.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk3.yml b/resources/fixtures/recorded/languages/typescript/takeFunk3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk3.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk3.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk4.yml b/resources/fixtures/recorded/languages/typescript/takeFunk4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk4.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk4.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk5.yml b/resources/fixtures/recorded/languages/typescript/takeFunk5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk5.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk5.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk6.yml b/resources/fixtures/recorded/languages/typescript/takeFunk6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk6.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk6.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk7.yml b/resources/fixtures/recorded/languages/typescript/takeFunk7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk7.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk7.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk8.yml b/resources/fixtures/recorded/languages/typescript/takeFunk8.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk8.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk8.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunk9.yml b/resources/fixtures/recorded/languages/typescript/takeFunk9.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunk9.yml rename to resources/fixtures/recorded/languages/typescript/takeFunk9.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkCap.yml b/resources/fixtures/recorded/languages/typescript/takeFunkCap.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkCap.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkCap.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkMade.yml b/resources/fixtures/recorded/languages/typescript/takeFunkMade.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkMade.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkMade.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkMade2.yml b/resources/fixtures/recorded/languages/typescript/takeFunkMade2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkMade2.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkMade2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName10.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName10.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName10.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName10.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName11.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName11.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName11.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName11.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName2.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName2.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName3.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName3.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName3.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName4.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName4.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName4.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName5.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName5.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName5.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName5.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName6.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName6.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName6.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName6.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName7.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName7.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName7.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName7.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName8.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName8.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName8.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName8.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkName9.yml b/resources/fixtures/recorded/languages/typescript/takeFunkName9.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkName9.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkName9.yml diff --git a/data/fixtures/recorded/languages/typescript/takeFunkSoon.yml b/resources/fixtures/recorded/languages/typescript/takeFunkSoon.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeFunkSoon.yml rename to resources/fixtures/recorded/languages/typescript/takeFunkSoon.yml diff --git a/data/fixtures/recorded/languages/typescript/takeIf.yml b/resources/fixtures/recorded/languages/typescript/takeIf.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeIf.yml rename to resources/fixtures/recorded/languages/typescript/takeIf.yml diff --git a/data/fixtures/recorded/languages/typescript/takeItem.yml b/resources/fixtures/recorded/languages/typescript/takeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeItem.yml rename to resources/fixtures/recorded/languages/typescript/takeItem.yml diff --git a/data/fixtures/recorded/languages/typescript/takeItem2.yml b/resources/fixtures/recorded/languages/typescript/takeItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeItem2.yml rename to resources/fixtures/recorded/languages/typescript/takeItem2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeItem3.yml b/resources/fixtures/recorded/languages/typescript/takeItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeItem3.yml rename to resources/fixtures/recorded/languages/typescript/takeItem3.yml diff --git a/data/fixtures/recorded/languages/typescript/takeItemAir.yml b/resources/fixtures/recorded/languages/typescript/takeItemAir.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeItemAir.yml rename to resources/fixtures/recorded/languages/typescript/takeItemAir.yml diff --git a/data/fixtures/recorded/languages/typescript/takeItemOne.yml b/resources/fixtures/recorded/languages/typescript/takeItemOne.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeItemOne.yml rename to resources/fixtures/recorded/languages/typescript/takeItemOne.yml diff --git a/data/fixtures/recorded/languages/typescript/takeKey.yml b/resources/fixtures/recorded/languages/typescript/takeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeKey.yml rename to resources/fixtures/recorded/languages/typescript/takeKey.yml diff --git a/data/fixtures/recorded/languages/typescript/takeList.yml b/resources/fixtures/recorded/languages/typescript/takeList.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeList.yml rename to resources/fixtures/recorded/languages/typescript/takeList.yml diff --git a/data/fixtures/recorded/languages/typescript/takeList2.yml b/resources/fixtures/recorded/languages/typescript/takeList2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeList2.yml rename to resources/fixtures/recorded/languages/typescript/takeList2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeMap.yml b/resources/fixtures/recorded/languages/typescript/takeMap.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeMap.yml rename to resources/fixtures/recorded/languages/typescript/takeMap.yml diff --git a/data/fixtures/recorded/languages/typescript/takeMap2.yml b/resources/fixtures/recorded/languages/typescript/takeMap2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeMap2.yml rename to resources/fixtures/recorded/languages/typescript/takeMap2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeName.yml b/resources/fixtures/recorded/languages/typescript/takeName.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeName.yml rename to resources/fixtures/recorded/languages/typescript/takeName.yml diff --git a/data/fixtures/recorded/languages/typescript/takeName2.yml b/resources/fixtures/recorded/languages/typescript/takeName2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeName2.yml rename to resources/fixtures/recorded/languages/typescript/takeName2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeRegex.yml b/resources/fixtures/recorded/languages/typescript/takeRegex.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeRegex.yml rename to resources/fixtures/recorded/languages/typescript/takeRegex.yml diff --git a/data/fixtures/recorded/languages/typescript/takeState.yml b/resources/fixtures/recorded/languages/typescript/takeState.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeState.yml rename to resources/fixtures/recorded/languages/typescript/takeState.yml diff --git a/data/fixtures/recorded/languages/typescript/takeState2.yml b/resources/fixtures/recorded/languages/typescript/takeState2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeState2.yml rename to resources/fixtures/recorded/languages/typescript/takeState2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeString.yml b/resources/fixtures/recorded/languages/typescript/takeString.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeString.yml rename to resources/fixtures/recorded/languages/typescript/takeString.yml diff --git a/data/fixtures/recorded/languages/typescript/takeType.yml b/resources/fixtures/recorded/languages/typescript/takeType.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeType.yml rename to resources/fixtures/recorded/languages/typescript/takeType.yml diff --git a/data/fixtures/recorded/languages/typescript/takeType2.yml b/resources/fixtures/recorded/languages/typescript/takeType2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeType2.yml rename to resources/fixtures/recorded/languages/typescript/takeType2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeValue.yml b/resources/fixtures/recorded/languages/typescript/takeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeValue.yml rename to resources/fixtures/recorded/languages/typescript/takeValue.yml diff --git a/data/fixtures/recorded/languages/typescript/takeValue2.yml b/resources/fixtures/recorded/languages/typescript/takeValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeValue2.yml rename to resources/fixtures/recorded/languages/typescript/takeValue2.yml diff --git a/data/fixtures/recorded/languages/typescript/takeValue3.yml b/resources/fixtures/recorded/languages/typescript/takeValue3.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeValue3.yml rename to resources/fixtures/recorded/languages/typescript/takeValue3.yml diff --git a/data/fixtures/recorded/languages/typescript/takeValue4.yml b/resources/fixtures/recorded/languages/typescript/takeValue4.yml similarity index 100% rename from data/fixtures/recorded/languages/typescript/takeValue4.yml rename to resources/fixtures/recorded/languages/typescript/takeValue4.yml diff --git a/data/fixtures/recorded/languages/xml/clearAtHerThen.yml b/resources/fixtures/recorded/languages/xml/clearAtHerThen.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearAtHerThen.yml rename to resources/fixtures/recorded/languages/xml/clearAtHerThen.yml diff --git a/data/fixtures/recorded/languages/xml/clearCore.yml b/resources/fixtures/recorded/languages/xml/clearCore.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearCore.yml rename to resources/fixtures/recorded/languages/xml/clearCore.yml diff --git a/data/fixtures/recorded/languages/xml/clearCore2.yml b/resources/fixtures/recorded/languages/xml/clearCore2.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearCore2.yml rename to resources/fixtures/recorded/languages/xml/clearCore2.yml diff --git a/data/fixtures/recorded/languages/xml/clearEli.yml b/resources/fixtures/recorded/languages/xml/clearEli.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearEli.yml rename to resources/fixtures/recorded/languages/xml/clearEli.yml diff --git a/data/fixtures/recorded/languages/xml/clearEndTag.yml b/resources/fixtures/recorded/languages/xml/clearEndTag.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearEndTag.yml rename to resources/fixtures/recorded/languages/xml/clearEndTag.yml diff --git a/data/fixtures/recorded/languages/xml/clearEveryAtHer.yml b/resources/fixtures/recorded/languages/xml/clearEveryAtHer.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearEveryAtHer.yml rename to resources/fixtures/recorded/languages/xml/clearEveryAtHer.yml diff --git a/data/fixtures/recorded/languages/xml/clearEveryEli.yml b/resources/fixtures/recorded/languages/xml/clearEveryEli.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearEveryEli.yml rename to resources/fixtures/recorded/languages/xml/clearEveryEli.yml diff --git a/data/fixtures/recorded/languages/xml/clearEveryTags.yml b/resources/fixtures/recorded/languages/xml/clearEveryTags.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearEveryTags.yml rename to resources/fixtures/recorded/languages/xml/clearEveryTags.yml diff --git a/data/fixtures/recorded/languages/xml/clearKeyThen.yml b/resources/fixtures/recorded/languages/xml/clearKeyThen.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearKeyThen.yml rename to resources/fixtures/recorded/languages/xml/clearKeyThen.yml diff --git a/data/fixtures/recorded/languages/xml/clearName.yml b/resources/fixtures/recorded/languages/xml/clearName.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearName.yml rename to resources/fixtures/recorded/languages/xml/clearName.yml diff --git a/data/fixtures/recorded/languages/xml/clearPair.yml b/resources/fixtures/recorded/languages/xml/clearPair.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearPair.yml rename to resources/fixtures/recorded/languages/xml/clearPair.yml diff --git a/data/fixtures/recorded/languages/xml/clearPair2.yml b/resources/fixtures/recorded/languages/xml/clearPair2.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearPair2.yml rename to resources/fixtures/recorded/languages/xml/clearPair2.yml diff --git a/data/fixtures/recorded/languages/xml/clearRound.yml b/resources/fixtures/recorded/languages/xml/clearRound.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearRound.yml rename to resources/fixtures/recorded/languages/xml/clearRound.yml diff --git a/data/fixtures/recorded/languages/xml/clearStartTag.yml b/resources/fixtures/recorded/languages/xml/clearStartTag.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearStartTag.yml rename to resources/fixtures/recorded/languages/xml/clearStartTag.yml diff --git a/data/fixtures/recorded/languages/xml/clearTags.yml b/resources/fixtures/recorded/languages/xml/clearTags.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/clearTags.yml rename to resources/fixtures/recorded/languages/xml/clearTags.yml diff --git a/data/fixtures/recorded/languages/xml/scratchClearValue.yml b/resources/fixtures/recorded/languages/xml/scratchClearValue.yml similarity index 100% rename from data/fixtures/recorded/languages/xml/scratchClearValue.yml rename to resources/fixtures/recorded/languages/xml/scratchClearValue.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryItem.yml b/resources/fixtures/recorded/languages/yaml/changeEveryItem.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryItem.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryItem.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryItem2.yml b/resources/fixtures/recorded/languages/yaml/changeEveryItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryItem2.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryItem2.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryItem3.yml b/resources/fixtures/recorded/languages/yaml/changeEveryItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryItem3.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryItem3.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryItem4.yml b/resources/fixtures/recorded/languages/yaml/changeEveryItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryItem4.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryItem4.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryKey.yml b/resources/fixtures/recorded/languages/yaml/changeEveryKey.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryKey.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryKey.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryKey2.yml b/resources/fixtures/recorded/languages/yaml/changeEveryKey2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryKey2.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryKey2.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryValue.yml b/resources/fixtures/recorded/languages/yaml/changeEveryValue.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryValue.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryValue.yml diff --git a/data/fixtures/recorded/languages/yaml/changeEveryValue2.yml b/resources/fixtures/recorded/languages/yaml/changeEveryValue2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeEveryValue2.yml rename to resources/fixtures/recorded/languages/yaml/changeEveryValue2.yml diff --git a/data/fixtures/recorded/languages/yaml/changeItem.yml b/resources/fixtures/recorded/languages/yaml/changeItem.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeItem.yml rename to resources/fixtures/recorded/languages/yaml/changeItem.yml diff --git a/data/fixtures/recorded/languages/yaml/changeItem2.yml b/resources/fixtures/recorded/languages/yaml/changeItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeItem2.yml rename to resources/fixtures/recorded/languages/yaml/changeItem2.yml diff --git a/data/fixtures/recorded/languages/yaml/changeItem3.yml b/resources/fixtures/recorded/languages/yaml/changeItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeItem3.yml rename to resources/fixtures/recorded/languages/yaml/changeItem3.yml diff --git a/data/fixtures/recorded/languages/yaml/changeItem4.yml b/resources/fixtures/recorded/languages/yaml/changeItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeItem4.yml rename to resources/fixtures/recorded/languages/yaml/changeItem4.yml diff --git a/data/fixtures/recorded/languages/yaml/changeKey.yml b/resources/fixtures/recorded/languages/yaml/changeKey.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeKey.yml rename to resources/fixtures/recorded/languages/yaml/changeKey.yml diff --git a/data/fixtures/recorded/languages/yaml/changeLeadingItem.yml b/resources/fixtures/recorded/languages/yaml/changeLeadingItem.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeLeadingItem.yml rename to resources/fixtures/recorded/languages/yaml/changeLeadingItem.yml diff --git a/data/fixtures/recorded/languages/yaml/changeLeadingValue.yml b/resources/fixtures/recorded/languages/yaml/changeLeadingValue.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeLeadingValue.yml rename to resources/fixtures/recorded/languages/yaml/changeLeadingValue.yml diff --git a/data/fixtures/recorded/languages/yaml/changeList.yml b/resources/fixtures/recorded/languages/yaml/changeList.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeList.yml rename to resources/fixtures/recorded/languages/yaml/changeList.yml diff --git a/data/fixtures/recorded/languages/yaml/changeList2.yml b/resources/fixtures/recorded/languages/yaml/changeList2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeList2.yml rename to resources/fixtures/recorded/languages/yaml/changeList2.yml diff --git a/data/fixtures/recorded/languages/yaml/changeList3.yml b/resources/fixtures/recorded/languages/yaml/changeList3.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeList3.yml rename to resources/fixtures/recorded/languages/yaml/changeList3.yml diff --git a/data/fixtures/recorded/languages/yaml/changeMap.yml b/resources/fixtures/recorded/languages/yaml/changeMap.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeMap.yml rename to resources/fixtures/recorded/languages/yaml/changeMap.yml diff --git a/data/fixtures/recorded/languages/yaml/changeMap2.yml b/resources/fixtures/recorded/languages/yaml/changeMap2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeMap2.yml rename to resources/fixtures/recorded/languages/yaml/changeMap2.yml diff --git a/data/fixtures/recorded/languages/yaml/changeTrailingItem.yml b/resources/fixtures/recorded/languages/yaml/changeTrailingItem.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeTrailingItem.yml rename to resources/fixtures/recorded/languages/yaml/changeTrailingItem.yml diff --git a/data/fixtures/recorded/languages/yaml/changeTrailingKey.yml b/resources/fixtures/recorded/languages/yaml/changeTrailingKey.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeTrailingKey.yml rename to resources/fixtures/recorded/languages/yaml/changeTrailingKey.yml diff --git a/data/fixtures/recorded/languages/yaml/changeValue.yml b/resources/fixtures/recorded/languages/yaml/changeValue.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/changeValue.yml rename to resources/fixtures/recorded/languages/yaml/changeValue.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem.yml b/resources/fixtures/recorded/languages/yaml/chuckItem.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem10.yml b/resources/fixtures/recorded/languages/yaml/chuckItem10.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem10.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem10.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem11.yml b/resources/fixtures/recorded/languages/yaml/chuckItem11.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem11.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem11.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem2.yml b/resources/fixtures/recorded/languages/yaml/chuckItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem2.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem2.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem3.yml b/resources/fixtures/recorded/languages/yaml/chuckItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem3.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem3.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem4.yml b/resources/fixtures/recorded/languages/yaml/chuckItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem4.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem4.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem5.yml b/resources/fixtures/recorded/languages/yaml/chuckItem5.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem5.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem5.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem6.yml b/resources/fixtures/recorded/languages/yaml/chuckItem6.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem6.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem6.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem7.yml b/resources/fixtures/recorded/languages/yaml/chuckItem7.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem7.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem7.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem8.yml b/resources/fixtures/recorded/languages/yaml/chuckItem8.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem8.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem8.yml diff --git a/data/fixtures/recorded/languages/yaml/chuckItem9.yml b/resources/fixtures/recorded/languages/yaml/chuckItem9.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/chuckItem9.yml rename to resources/fixtures/recorded/languages/yaml/chuckItem9.yml diff --git a/data/fixtures/recorded/languages/yaml/drinkItem.yml b/resources/fixtures/recorded/languages/yaml/drinkItem.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/drinkItem.yml rename to resources/fixtures/recorded/languages/yaml/drinkItem.yml diff --git a/data/fixtures/recorded/languages/yaml/drinkItem2.yml b/resources/fixtures/recorded/languages/yaml/drinkItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/drinkItem2.yml rename to resources/fixtures/recorded/languages/yaml/drinkItem2.yml diff --git a/data/fixtures/recorded/languages/yaml/drinkItem3.yml b/resources/fixtures/recorded/languages/yaml/drinkItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/drinkItem3.yml rename to resources/fixtures/recorded/languages/yaml/drinkItem3.yml diff --git a/data/fixtures/recorded/languages/yaml/pourItem.yml b/resources/fixtures/recorded/languages/yaml/pourItem.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/pourItem.yml rename to resources/fixtures/recorded/languages/yaml/pourItem.yml diff --git a/data/fixtures/recorded/languages/yaml/pourItem2.yml b/resources/fixtures/recorded/languages/yaml/pourItem2.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/pourItem2.yml rename to resources/fixtures/recorded/languages/yaml/pourItem2.yml diff --git a/data/fixtures/recorded/languages/yaml/pourItem3.yml b/resources/fixtures/recorded/languages/yaml/pourItem3.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/pourItem3.yml rename to resources/fixtures/recorded/languages/yaml/pourItem3.yml diff --git a/data/fixtures/recorded/languages/yaml/pourItem4.yml b/resources/fixtures/recorded/languages/yaml/pourItem4.yml similarity index 100% rename from data/fixtures/recorded/languages/yaml/pourItem4.yml rename to resources/fixtures/recorded/languages/yaml/pourItem4.yml diff --git a/data/fixtures/recorded/leadingTrailing/chuckLeadingWhale.yml b/resources/fixtures/recorded/leadingTrailing/chuckLeadingWhale.yml similarity index 100% rename from data/fixtures/recorded/leadingTrailing/chuckLeadingWhale.yml rename to resources/fixtures/recorded/leadingTrailing/chuckLeadingWhale.yml diff --git a/data/fixtures/recorded/leadingTrailing/chuckPastLeadingTrap.yml b/resources/fixtures/recorded/leadingTrailing/chuckPastLeadingTrap.yml similarity index 100% rename from data/fixtures/recorded/leadingTrailing/chuckPastLeadingTrap.yml rename to resources/fixtures/recorded/leadingTrailing/chuckPastLeadingTrap.yml diff --git a/data/fixtures/recorded/leadingTrailing/chuckPastTrailingLook.yml b/resources/fixtures/recorded/leadingTrailing/chuckPastTrailingLook.yml similarity index 100% rename from data/fixtures/recorded/leadingTrailing/chuckPastTrailingLook.yml rename to resources/fixtures/recorded/leadingTrailing/chuckPastTrailingLook.yml diff --git a/data/fixtures/recorded/leadingTrailing/chuckTrailingDrum.yml b/resources/fixtures/recorded/leadingTrailing/chuckTrailingDrum.yml similarity index 100% rename from data/fixtures/recorded/leadingTrailing/chuckTrailingDrum.yml rename to resources/fixtures/recorded/leadingTrailing/chuckTrailingDrum.yml diff --git a/data/fixtures/recorded/leadingTrailing/clearLeadingWhale.yml b/resources/fixtures/recorded/leadingTrailing/clearLeadingWhale.yml similarity index 100% rename from data/fixtures/recorded/leadingTrailing/clearLeadingWhale.yml rename to resources/fixtures/recorded/leadingTrailing/clearLeadingWhale.yml diff --git a/data/fixtures/recorded/leadingTrailing/clearTrailingWhale.yml b/resources/fixtures/recorded/leadingTrailing/clearTrailingWhale.yml similarity index 100% rename from data/fixtures/recorded/leadingTrailing/clearTrailingWhale.yml rename to resources/fixtures/recorded/leadingTrailing/clearTrailingWhale.yml diff --git a/data/fixtures/recorded/lineEndings/chuckVestCRLF.yml b/resources/fixtures/recorded/lineEndings/chuckVestCRLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/chuckVestCRLF.yml rename to resources/fixtures/recorded/lineEndings/chuckVestCRLF.yml diff --git a/data/fixtures/recorded/lineEndings/chuckVestLF.yml b/resources/fixtures/recorded/lineEndings/chuckVestLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/chuckVestLF.yml rename to resources/fixtures/recorded/lineEndings/chuckVestLF.yml diff --git a/data/fixtures/recorded/lineEndings/clearCoreFileCRLF.yml b/resources/fixtures/recorded/lineEndings/clearCoreFileCRLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/clearCoreFileCRLF.yml rename to resources/fixtures/recorded/lineEndings/clearCoreFileCRLF.yml diff --git a/data/fixtures/recorded/lineEndings/dropVestCRLF.yml b/resources/fixtures/recorded/lineEndings/dropVestCRLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/dropVestCRLF.yml rename to resources/fixtures/recorded/lineEndings/dropVestCRLF.yml diff --git a/data/fixtures/recorded/lineEndings/dropVestLF.yml b/resources/fixtures/recorded/lineEndings/dropVestLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/dropVestLF.yml rename to resources/fixtures/recorded/lineEndings/dropVestLF.yml diff --git a/data/fixtures/recorded/lineEndings/pourBlockCRLF.yml b/resources/fixtures/recorded/lineEndings/pourBlockCRLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/pourBlockCRLF.yml rename to resources/fixtures/recorded/lineEndings/pourBlockCRLF.yml diff --git a/data/fixtures/recorded/lineEndings/pourItemCRLF.yml b/resources/fixtures/recorded/lineEndings/pourItemCRLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/pourItemCRLF.yml rename to resources/fixtures/recorded/lineEndings/pourItemCRLF.yml diff --git a/data/fixtures/recorded/lineEndings/pourStateCRLF.yml b/resources/fixtures/recorded/lineEndings/pourStateCRLF.yml similarity index 100% rename from data/fixtures/recorded/lineEndings/pourStateCRLF.yml rename to resources/fixtures/recorded/lineEndings/pourStateCRLF.yml diff --git a/data/fixtures/recorded/marks/chuckNothing.yml b/resources/fixtures/recorded/marks/chuckNothing.yml similarity index 100% rename from data/fixtures/recorded/marks/chuckNothing.yml rename to resources/fixtures/recorded/marks/chuckNothing.yml diff --git a/data/fixtures/recorded/marks/highlightHarp.yml b/resources/fixtures/recorded/marks/highlightHarp.yml similarity index 100% rename from data/fixtures/recorded/marks/highlightHarp.yml rename to resources/fixtures/recorded/marks/highlightHarp.yml diff --git a/data/fixtures/recorded/marks/takeDownOne.yml b/resources/fixtures/recorded/marks/takeDownOne.yml similarity index 100% rename from data/fixtures/recorded/marks/takeDownOne.yml rename to resources/fixtures/recorded/marks/takeDownOne.yml diff --git a/data/fixtures/recorded/marks/takeDownOnePastThree.yml b/resources/fixtures/recorded/marks/takeDownOnePastThree.yml similarity index 100% rename from data/fixtures/recorded/marks/takeDownOnePastThree.yml rename to resources/fixtures/recorded/marks/takeDownOnePastThree.yml diff --git a/data/fixtures/recorded/marks/takeRowFive.yml b/resources/fixtures/recorded/marks/takeRowFive.yml similarity index 100% rename from data/fixtures/recorded/marks/takeRowFive.yml rename to resources/fixtures/recorded/marks/takeRowFive.yml diff --git a/data/fixtures/recorded/marks/takeRowFour.yml b/resources/fixtures/recorded/marks/takeRowFour.yml similarity index 100% rename from data/fixtures/recorded/marks/takeRowFour.yml rename to resources/fixtures/recorded/marks/takeRowFour.yml diff --git a/data/fixtures/recorded/marks/takeRowOne.yml b/resources/fixtures/recorded/marks/takeRowOne.yml similarity index 100% rename from data/fixtures/recorded/marks/takeRowOne.yml rename to resources/fixtures/recorded/marks/takeRowOne.yml diff --git a/data/fixtures/recorded/marks/takeRowTwoPastDownThree.yml b/resources/fixtures/recorded/marks/takeRowTwoPastDownThree.yml similarity index 100% rename from data/fixtures/recorded/marks/takeRowTwoPastDownThree.yml rename to resources/fixtures/recorded/marks/takeRowTwoPastDownThree.yml diff --git a/data/fixtures/recorded/marks/takeRowTwoPastFour.yml b/resources/fixtures/recorded/marks/takeRowTwoPastFour.yml similarity index 100% rename from data/fixtures/recorded/marks/takeRowTwoPastFour.yml rename to resources/fixtures/recorded/marks/takeRowTwoPastFour.yml diff --git a/data/fixtures/recorded/marks/takeSource.yml b/resources/fixtures/recorded/marks/takeSource.yml similarity index 100% rename from data/fixtures/recorded/marks/takeSource.yml rename to resources/fixtures/recorded/marks/takeSource.yml diff --git a/data/fixtures/recorded/marks/takeThat.yml b/resources/fixtures/recorded/marks/takeThat.yml similarity index 100% rename from data/fixtures/recorded/marks/takeThat.yml rename to resources/fixtures/recorded/marks/takeThat.yml diff --git a/data/fixtures/recorded/marks/takeThis.yml b/resources/fixtures/recorded/marks/takeThis.yml similarity index 100% rename from data/fixtures/recorded/marks/takeThis.yml rename to resources/fixtures/recorded/marks/takeThis.yml diff --git a/data/fixtures/recorded/marks/takeUpOnePastDownOne.yml b/resources/fixtures/recorded/marks/takeUpOnePastDownOne.yml similarity index 100% rename from data/fixtures/recorded/marks/takeUpOnePastDownOne.yml rename to resources/fixtures/recorded/marks/takeUpOnePastDownOne.yml diff --git a/data/fixtures/recorded/marks/takeUpOnePastRowFour.yml b/resources/fixtures/recorded/marks/takeUpOnePastRowFour.yml similarity index 100% rename from data/fixtures/recorded/marks/takeUpOnePastRowFour.yml rename to resources/fixtures/recorded/marks/takeUpOnePastRowFour.yml diff --git a/data/fixtures/recorded/modifiers/changeBoundsValue.yml b/resources/fixtures/recorded/modifiers/changeBoundsValue.yml similarity index 100% rename from data/fixtures/recorded/modifiers/changeBoundsValue.yml rename to resources/fixtures/recorded/modifiers/changeBoundsValue.yml diff --git a/data/fixtures/recorded/modifiers/changeVisible.yml b/resources/fixtures/recorded/modifiers/changeVisible.yml similarity index 100% rename from data/fixtures/recorded/modifiers/changeVisible.yml rename to resources/fixtures/recorded/modifiers/changeVisible.yml diff --git a/data/fixtures/recorded/modifiers/everyScope/clearEveryLine.yml b/resources/fixtures/recorded/modifiers/everyScope/clearEveryLine.yml similarity index 100% rename from data/fixtures/recorded/modifiers/everyScope/clearEveryLine.yml rename to resources/fixtures/recorded/modifiers/everyScope/clearEveryLine.yml diff --git a/data/fixtures/recorded/modifiers/everyScope/clearEveryToken.yml b/resources/fixtures/recorded/modifiers/everyScope/clearEveryToken.yml similarity index 100% rename from data/fixtures/recorded/modifiers/everyScope/clearEveryToken.yml rename to resources/fixtures/recorded/modifiers/everyScope/clearEveryToken.yml diff --git a/data/fixtures/recorded/modifiers/everyScope/clearFirstToken.yml b/resources/fixtures/recorded/modifiers/everyScope/clearFirstToken.yml similarity index 100% rename from data/fixtures/recorded/modifiers/everyScope/clearFirstToken.yml rename to resources/fixtures/recorded/modifiers/everyScope/clearFirstToken.yml diff --git a/data/fixtures/recorded/modifiers/everyScope/clearLastToken.yml b/resources/fixtures/recorded/modifiers/everyScope/clearLastToken.yml similarity index 100% rename from data/fixtures/recorded/modifiers/everyScope/clearLastToken.yml rename to resources/fixtures/recorded/modifiers/everyScope/clearLastToken.yml diff --git a/data/fixtures/recorded/modifiers/everyScope/clearSecondLine.yml b/resources/fixtures/recorded/modifiers/everyScope/clearSecondLine.yml similarity index 100% rename from data/fixtures/recorded/modifiers/everyScope/clearSecondLine.yml rename to resources/fixtures/recorded/modifiers/everyScope/clearSecondLine.yml diff --git a/data/fixtures/recorded/modifiers/instance/bringDrumAfterTwoInstancesAir.yml b/resources/fixtures/recorded/modifiers/instance/bringDrumAfterTwoInstancesAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/bringDrumAfterTwoInstancesAir.yml rename to resources/fixtures/recorded/modifiers/instance/bringDrumAfterTwoInstancesAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/chuckTwoInstancesLineAir.yml b/resources/fixtures/recorded/modifiers/instance/chuckTwoInstancesLineAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/chuckTwoInstancesLineAir.yml rename to resources/fixtures/recorded/modifiers/instance/chuckTwoInstancesLineAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearEveryInstanceAir.yml b/resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearEveryInstanceAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearEveryInstanceAir2.yml b/resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAir2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearEveryInstanceAir2.yml rename to resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAir2.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearEveryInstanceAir3.yml b/resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAir3.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearEveryInstanceAir3.yml rename to resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAir3.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearEveryInstanceAirPastBat.yml b/resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAirPastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearEveryInstanceAirPastBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearEveryInstanceAirPastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearEveryInstanceEveryTokenAirPastBat.yml b/resources/fixtures/recorded/modifiers/instance/clearEveryInstanceEveryTokenAirPastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearEveryInstanceEveryTokenAirPastBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearEveryInstanceEveryTokenAirPastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearEveryInstancePastBat.yml b/resources/fixtures/recorded/modifiers/instance/clearEveryInstancePastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearEveryInstancePastBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearEveryInstancePastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearEveryInstanceThisPastBat.yml b/resources/fixtures/recorded/modifiers/instance/clearEveryInstanceThisPastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearEveryInstanceThisPastBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearEveryInstanceThisPastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearFirstInstanceAir.yml b/resources/fixtures/recorded/modifiers/instance/clearFirstInstanceAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearFirstInstanceAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearFirstInstanceAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir.yml b/resources/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir2.yml b/resources/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir2.yml rename to resources/fixtures/recorded/modifiers/instance/clearFirstTwoInstancesAir2.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearLastTwoInstancesAir.yml b/resources/fixtures/recorded/modifiers/instance/clearLastTwoInstancesAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearLastTwoInstancesAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearLastTwoInstancesAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearNextInstanceAir.yml b/resources/fixtures/recorded/modifiers/instance/clearNextInstanceAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearNextInstanceAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearNextInstanceAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearNextInstanceAir2.yml b/resources/fixtures/recorded/modifiers/instance/clearNextInstanceAir2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearNextInstanceAir2.yml rename to resources/fixtures/recorded/modifiers/instance/clearNextInstanceAir2.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearNextInstanceAir3.yml b/resources/fixtures/recorded/modifiers/instance/clearNextInstanceAir3.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearNextInstanceAir3.yml rename to resources/fixtures/recorded/modifiers/instance/clearNextInstanceAir3.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearNextInstanceAirPastBat.yml b/resources/fixtures/recorded/modifiers/instance/clearNextInstanceAirPastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearNextInstanceAirPastBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearNextInstanceAirPastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearNextTwoInstancesAir.yml b/resources/fixtures/recorded/modifiers/instance/clearNextTwoInstancesAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearNextTwoInstancesAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearNextTwoInstancesAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearPastNextInstance.yml b/resources/fixtures/recorded/modifiers/instance/clearPastNextInstance.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearPastNextInstance.yml rename to resources/fixtures/recorded/modifiers/instance/clearPastNextInstance.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearPreviousTwoInstancesAir.yml b/resources/fixtures/recorded/modifiers/instance/clearPreviousTwoInstancesAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearPreviousTwoInstancesAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearPreviousTwoInstancesAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearThreeInstances.yml b/resources/fixtures/recorded/modifiers/instance/clearThreeInstances.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearThreeInstances.yml rename to resources/fixtures/recorded/modifiers/instance/clearThreeInstances.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstances.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstances.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstances.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstances.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstances2.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstances2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstances2.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstances2.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesAirAndBat.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesAirAndBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesAirAndBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesAirAndBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesBackward.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBackward.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesBackward.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBackward.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesBat.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesBat2.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBat2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesBat2.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBat2.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesBlueAirPastBat.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBlueAirPastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesBlueAirPastBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesBlueAirPastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesEveryTokenBatPastDrum.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesEveryTokenBatPastDrum.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesEveryTokenBatPastDrum.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesEveryTokenBatPastDrum.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesFirstThreeCarsAir.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesFirstThreeCarsAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesFirstThreeCarsAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesFirstThreeCarsAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesJustBat.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesJustBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesJustBat.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesJustBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesLastWordAir.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesLastWordAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesLastWordAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesLastWordAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesLineAir.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesLineAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesLineAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesLineAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/clearTwoInstancesTwoClicksAir.yml b/resources/fixtures/recorded/modifiers/instance/clearTwoInstancesTwoClicksAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/clearTwoInstancesTwoClicksAir.yml rename to resources/fixtures/recorded/modifiers/instance/clearTwoInstancesTwoClicksAir.yml diff --git a/data/fixtures/recorded/modifiers/instance/fromDrum.yml b/resources/fixtures/recorded/modifiers/instance/fromDrum.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/fromDrum.yml rename to resources/fixtures/recorded/modifiers/instance/fromDrum.yml diff --git a/data/fixtures/recorded/modifiers/instance/fromLine.yml b/resources/fixtures/recorded/modifiers/instance/fromLine.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/fromLine.yml rename to resources/fixtures/recorded/modifiers/instance/fromLine.yml diff --git a/data/fixtures/recorded/modifiers/instance/preEveryCarEveryInstanceAirPastBat.yml b/resources/fixtures/recorded/modifiers/instance/preEveryCarEveryInstanceAirPastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/preEveryCarEveryInstanceAirPastBat.yml rename to resources/fixtures/recorded/modifiers/instance/preEveryCarEveryInstanceAirPastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/preEveryInstanceEveryCarAirPastBat.yml b/resources/fixtures/recorded/modifiers/instance/preEveryInstanceEveryCarAirPastBat.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/preEveryInstanceEveryCarAirPastBat.yml rename to resources/fixtures/recorded/modifiers/instance/preEveryInstanceEveryCarAirPastBat.yml diff --git a/data/fixtures/recorded/modifiers/instance/preEveryInstanceFirstCarAir.yml b/resources/fixtures/recorded/modifiers/instance/preEveryInstanceFirstCarAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/instance/preEveryInstanceFirstCarAir.yml rename to resources/fixtures/recorded/modifiers/instance/preEveryInstanceFirstCarAir.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeHead.yml b/resources/fixtures/recorded/modifiers/interior/changeHead.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeHead.yml rename to resources/fixtures/recorded/modifiers/interior/changeHead.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInside.yml b/resources/fixtures/recorded/modifiers/interior/changeInside.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInside.yml rename to resources/fixtures/recorded/modifiers/interior/changeInside.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInside2.yml b/resources/fixtures/recorded/modifiers/interior/changeInside2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInside2.yml rename to resources/fixtures/recorded/modifiers/interior/changeInside2.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInside3.yml b/resources/fixtures/recorded/modifiers/interior/changeInside3.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInside3.yml rename to resources/fixtures/recorded/modifiers/interior/changeInside3.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInside4.yml b/resources/fixtures/recorded/modifiers/interior/changeInside4.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInside4.yml rename to resources/fixtures/recorded/modifiers/interior/changeInside4.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInside5.yml b/resources/fixtures/recorded/modifiers/interior/changeInside5.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInside5.yml rename to resources/fixtures/recorded/modifiers/interior/changeInside5.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInsideAir.yml b/resources/fixtures/recorded/modifiers/interior/changeInsideAir.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInsideAir.yml rename to resources/fixtures/recorded/modifiers/interior/changeInsideAir.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInsideElement.yml b/resources/fixtures/recorded/modifiers/interior/changeInsideElement.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInsideElement.yml rename to resources/fixtures/recorded/modifiers/interior/changeInsideElement.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInsideElement2.yml b/resources/fixtures/recorded/modifiers/interior/changeInsideElement2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInsideElement2.yml rename to resources/fixtures/recorded/modifiers/interior/changeInsideElement2.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeInsideState.yml b/resources/fixtures/recorded/modifiers/interior/changeInsideState.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeInsideState.yml rename to resources/fixtures/recorded/modifiers/interior/changeInsideState.yml diff --git a/data/fixtures/recorded/modifiers/interior/changeTail.yml b/resources/fixtures/recorded/modifiers/interior/changeTail.yml similarity index 100% rename from data/fixtures/recorded/modifiers/interior/changeTail.yml rename to resources/fixtures/recorded/modifiers/interior/changeTail.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/changeGoodPair.yml b/resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/changeGoodPair.yml rename to resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/changeGoodPair2.yml b/resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/changeGoodPair2.yml rename to resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair2.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/changeGoodPair3.yml b/resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair3.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/changeGoodPair3.yml rename to resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair3.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/changeGoodPair4.yml b/resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair4.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/changeGoodPair4.yml rename to resources/fixtures/recorded/modifiers/preferredScope/changeGoodPair4.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearItem.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearItem.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearItem.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearItem.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHello.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHello.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHello.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHello.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHello2.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHello2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHello2.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHello2.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere2.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere2.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere2.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere2.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere3.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere3.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere3.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere3.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere4.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere4.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere4.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere4.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere5.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere5.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere5.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere5.yml diff --git a/data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere6.yml b/resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere6.yml similarity index 100% rename from data/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere6.yml rename to resources/fixtures/recorded/modifiers/preferredScope/clearLiteralHelloThere6.yml diff --git a/data/fixtures/recorded/nonMatchErrors/takeFunk.yml b/resources/fixtures/recorded/nonMatchErrors/takeFunk.yml similarity index 100% rename from data/fixtures/recorded/nonMatchErrors/takeFunk.yml rename to resources/fixtures/recorded/nonMatchErrors/takeFunk.yml diff --git a/data/fixtures/recorded/nonMatchErrors/takeList.yml b/resources/fixtures/recorded/nonMatchErrors/takeList.yml similarity index 100% rename from data/fixtures/recorded/nonMatchErrors/takeList.yml rename to resources/fixtures/recorded/nonMatchErrors/takeList.yml diff --git a/data/fixtures/recorded/ordinalScopes/changeEveryFirstThreeTokens.yml b/resources/fixtures/recorded/ordinalScopes/changeEveryFirstThreeTokens.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/changeEveryFirstThreeTokens.yml rename to resources/fixtures/recorded/ordinalScopes/changeEveryFirstThreeTokens.yml diff --git a/data/fixtures/recorded/ordinalScopes/changeEveryLastThreeTokens.yml b/resources/fixtures/recorded/ordinalScopes/changeEveryLastThreeTokens.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/changeEveryLastThreeTokens.yml rename to resources/fixtures/recorded/ordinalScopes/changeEveryLastThreeTokens.yml diff --git a/data/fixtures/recorded/ordinalScopes/changeSecondNextTwoTokens.yml b/resources/fixtures/recorded/ordinalScopes/changeSecondNextTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/changeSecondNextTwoTokens.yml rename to resources/fixtures/recorded/ordinalScopes/changeSecondNextTwoTokens.yml diff --git a/data/fixtures/recorded/ordinalScopes/changeSecondTwoTokens.yml b/resources/fixtures/recorded/ordinalScopes/changeSecondTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/changeSecondTwoTokens.yml rename to resources/fixtures/recorded/ordinalScopes/changeSecondTwoTokens.yml diff --git a/data/fixtures/recorded/ordinalScopes/changeSpreadFirstTwoTokens.yml b/resources/fixtures/recorded/ordinalScopes/changeSpreadFirstTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/changeSpreadFirstTwoTokens.yml rename to resources/fixtures/recorded/ordinalScopes/changeSpreadFirstTwoTokens.yml diff --git a/data/fixtures/recorded/ordinalScopes/changeSpreadLastTwoTokens.yml b/resources/fixtures/recorded/ordinalScopes/changeSpreadLastTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/changeSpreadLastTwoTokens.yml rename to resources/fixtures/recorded/ordinalScopes/changeSpreadLastTwoTokens.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearFirstPaint.yml b/resources/fixtures/recorded/ordinalScopes/clearFirstPaint.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearFirstPaint.yml rename to resources/fixtures/recorded/ordinalScopes/clearFirstPaint.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearFirstPaint2.yml b/resources/fixtures/recorded/ordinalScopes/clearFirstPaint2.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearFirstPaint2.yml rename to resources/fixtures/recorded/ordinalScopes/clearFirstPaint2.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearFirstToken.yml b/resources/fixtures/recorded/ordinalScopes/clearFirstToken.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearFirstToken.yml rename to resources/fixtures/recorded/ordinalScopes/clearFirstToken.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearFirstToken2.yml b/resources/fixtures/recorded/ordinalScopes/clearFirstToken2.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearFirstToken2.yml rename to resources/fixtures/recorded/ordinalScopes/clearFirstToken2.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearLastCall.yml b/resources/fixtures/recorded/ordinalScopes/clearLastCall.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearLastCall.yml rename to resources/fixtures/recorded/ordinalScopes/clearLastCall.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearLastPaint.yml b/resources/fixtures/recorded/ordinalScopes/clearLastPaint.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearLastPaint.yml rename to resources/fixtures/recorded/ordinalScopes/clearLastPaint.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearLastPaint2.yml b/resources/fixtures/recorded/ordinalScopes/clearLastPaint2.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearLastPaint2.yml rename to resources/fixtures/recorded/ordinalScopes/clearLastPaint2.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearLastToken.yml b/resources/fixtures/recorded/ordinalScopes/clearLastToken.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearLastToken.yml rename to resources/fixtures/recorded/ordinalScopes/clearLastToken.yml diff --git a/data/fixtures/recorded/ordinalScopes/clearLastToken2.yml b/resources/fixtures/recorded/ordinalScopes/clearLastToken2.yml similarity index 100% rename from data/fixtures/recorded/ordinalScopes/clearLastToken2.yml rename to resources/fixtures/recorded/ordinalScopes/clearLastToken2.yml diff --git a/data/fixtures/recorded/positions/bringArgMadeAndGustToEndOfJustThis.yml b/resources/fixtures/recorded/positions/bringArgMadeAndGustToEndOfJustThis.yml similarity index 100% rename from data/fixtures/recorded/positions/bringArgMadeAndGustToEndOfJustThis.yml rename to resources/fixtures/recorded/positions/bringArgMadeAndGustToEndOfJustThis.yml diff --git a/data/fixtures/recorded/positions/bringBlockAirBeforeBatAndDrumAndAfterBatAndDrum.yml b/resources/fixtures/recorded/positions/bringBlockAirBeforeBatAndDrumAndAfterBatAndDrum.yml similarity index 100% rename from data/fixtures/recorded/positions/bringBlockAirBeforeBatAndDrumAndAfterBatAndDrum.yml rename to resources/fixtures/recorded/positions/bringBlockAirBeforeBatAndDrumAndAfterBatAndDrum.yml diff --git a/data/fixtures/recorded/positions/bringFunkAirAfterBat.yml b/resources/fixtures/recorded/positions/bringFunkAirAfterBat.yml similarity index 100% rename from data/fixtures/recorded/positions/bringFunkAirAfterBat.yml rename to resources/fixtures/recorded/positions/bringFunkAirAfterBat.yml diff --git a/data/fixtures/recorded/positions/bringFunkBatBeforeAir.yml b/resources/fixtures/recorded/positions/bringFunkBatBeforeAir.yml similarity index 100% rename from data/fixtures/recorded/positions/bringFunkBatBeforeAir.yml rename to resources/fixtures/recorded/positions/bringFunkBatBeforeAir.yml diff --git a/data/fixtures/recorded/positions/bringHarpAfterLineOatsAndWhale.yml b/resources/fixtures/recorded/positions/bringHarpAfterLineOatsAndWhale.yml similarity index 100% rename from data/fixtures/recorded/positions/bringHarpAfterLineOatsAndWhale.yml rename to resources/fixtures/recorded/positions/bringHarpAfterLineOatsAndWhale.yml diff --git a/data/fixtures/recorded/positions/bringHarpToAfterFile.yml b/resources/fixtures/recorded/positions/bringHarpToAfterFile.yml similarity index 100% rename from data/fixtures/recorded/positions/bringHarpToAfterFile.yml rename to resources/fixtures/recorded/positions/bringHarpToAfterFile.yml diff --git a/data/fixtures/recorded/positions/bringStateFineToAfterBatt.yml b/resources/fixtures/recorded/positions/bringStateFineToAfterBatt.yml similarity index 100% rename from data/fixtures/recorded/positions/bringStateFineToAfterBatt.yml rename to resources/fixtures/recorded/positions/bringStateFineToAfterBatt.yml diff --git a/data/fixtures/recorded/positions/bringWhaleToBeforeFile.yml b/resources/fixtures/recorded/positions/bringWhaleToBeforeFile.yml similarity index 100% rename from data/fixtures/recorded/positions/bringWhaleToBeforeFile.yml rename to resources/fixtures/recorded/positions/bringWhaleToBeforeFile.yml diff --git a/data/fixtures/recorded/positions/chuckAfterHarp.yml b/resources/fixtures/recorded/positions/chuckAfterHarp.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckAfterHarp.yml rename to resources/fixtures/recorded/positions/chuckAfterHarp.yml diff --git a/data/fixtures/recorded/positions/chuckAfterLineVest.yml b/resources/fixtures/recorded/positions/chuckAfterLineVest.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckAfterLineVest.yml rename to resources/fixtures/recorded/positions/chuckAfterLineVest.yml diff --git a/data/fixtures/recorded/positions/chuckAfterLook.yml b/resources/fixtures/recorded/positions/chuckAfterLook.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckAfterLook.yml rename to resources/fixtures/recorded/positions/chuckAfterLook.yml diff --git a/data/fixtures/recorded/positions/chuckAfterVest.yml b/resources/fixtures/recorded/positions/chuckAfterVest.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckAfterVest.yml rename to resources/fixtures/recorded/positions/chuckAfterVest.yml diff --git a/data/fixtures/recorded/positions/chuckAir.yml b/resources/fixtures/recorded/positions/chuckAir.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckAir.yml rename to resources/fixtures/recorded/positions/chuckAir.yml diff --git a/data/fixtures/recorded/positions/chuckBeforeAir.yml b/resources/fixtures/recorded/positions/chuckBeforeAir.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckBeforeAir.yml rename to resources/fixtures/recorded/positions/chuckBeforeAir.yml diff --git a/data/fixtures/recorded/positions/chuckBeforeEach.yml b/resources/fixtures/recorded/positions/chuckBeforeEach.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckBeforeEach.yml rename to resources/fixtures/recorded/positions/chuckBeforeEach.yml diff --git a/data/fixtures/recorded/positions/chuckBeforeHarp.yml b/resources/fixtures/recorded/positions/chuckBeforeHarp.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckBeforeHarp.yml rename to resources/fixtures/recorded/positions/chuckBeforeHarp.yml diff --git a/data/fixtures/recorded/positions/chuckBeforeLineAir.yml b/resources/fixtures/recorded/positions/chuckBeforeLineAir.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckBeforeLineAir.yml rename to resources/fixtures/recorded/positions/chuckBeforeLineAir.yml diff --git a/data/fixtures/recorded/positions/chuckBeforeVest.yml b/resources/fixtures/recorded/positions/chuckBeforeVest.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckBeforeVest.yml rename to resources/fixtures/recorded/positions/chuckBeforeVest.yml diff --git a/data/fixtures/recorded/positions/chuckEndOfWhale.yml b/resources/fixtures/recorded/positions/chuckEndOfWhale.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckEndOfWhale.yml rename to resources/fixtures/recorded/positions/chuckEndOfWhale.yml diff --git a/data/fixtures/recorded/positions/chuckLeadingBlockAir.yml b/resources/fixtures/recorded/positions/chuckLeadingBlockAir.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckLeadingBlockAir.yml rename to resources/fixtures/recorded/positions/chuckLeadingBlockAir.yml diff --git a/data/fixtures/recorded/positions/chuckPastEndOfLine.yml b/resources/fixtures/recorded/positions/chuckPastEndOfLine.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckPastEndOfLine.yml rename to resources/fixtures/recorded/positions/chuckPastEndOfLine.yml diff --git a/data/fixtures/recorded/positions/chuckPastEndOfLook.yml b/resources/fixtures/recorded/positions/chuckPastEndOfLook.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckPastEndOfLook.yml rename to resources/fixtures/recorded/positions/chuckPastEndOfLook.yml diff --git a/data/fixtures/recorded/positions/chuckPastStartOfTrap.yml b/resources/fixtures/recorded/positions/chuckPastStartOfTrap.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckPastStartOfTrap.yml rename to resources/fixtures/recorded/positions/chuckPastStartOfTrap.yml diff --git a/data/fixtures/recorded/positions/chuckStartOfWhale.yml b/resources/fixtures/recorded/positions/chuckStartOfWhale.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckStartOfWhale.yml rename to resources/fixtures/recorded/positions/chuckStartOfWhale.yml diff --git a/data/fixtures/recorded/positions/chuckTrailingBlockVest.yml b/resources/fixtures/recorded/positions/chuckTrailingBlockVest.yml similarity index 100% rename from data/fixtures/recorded/positions/chuckTrailingBlockVest.yml rename to resources/fixtures/recorded/positions/chuckTrailingBlockVest.yml diff --git a/data/fixtures/recorded/positions/listDestinationOneDestination.yml b/resources/fixtures/recorded/positions/listDestinationOneDestination.yml similarity index 100% rename from data/fixtures/recorded/positions/listDestinationOneDestination.yml rename to resources/fixtures/recorded/positions/listDestinationOneDestination.yml diff --git a/data/fixtures/recorded/positions/listDestinationZeroDestinations.yml b/resources/fixtures/recorded/positions/listDestinationZeroDestinations.yml similarity index 100% rename from data/fixtures/recorded/positions/listDestinationZeroDestinations.yml rename to resources/fixtures/recorded/positions/listDestinationZeroDestinations.yml diff --git a/data/fixtures/recorded/positions/pourIfState.yml b/resources/fixtures/recorded/positions/pourIfState.yml similarity index 100% rename from data/fixtures/recorded/positions/pourIfState.yml rename to resources/fixtures/recorded/positions/pourIfState.yml diff --git a/data/fixtures/recorded/positions/replaceAfterVestWithHallo.yml b/resources/fixtures/recorded/positions/replaceAfterVestWithHallo.yml similarity index 100% rename from data/fixtures/recorded/positions/replaceAfterVestWithHallo.yml rename to resources/fixtures/recorded/positions/replaceAfterVestWithHallo.yml diff --git a/data/fixtures/recorded/positions/replaceBeforeVestWithHello.yml b/resources/fixtures/recorded/positions/replaceBeforeVestWithHello.yml similarity index 100% rename from data/fixtures/recorded/positions/replaceBeforeVestWithHello.yml rename to resources/fixtures/recorded/positions/replaceBeforeVestWithHello.yml diff --git a/data/fixtures/recorded/positions/replaceEndOfVestWithHello.yml b/resources/fixtures/recorded/positions/replaceEndOfVestWithHello.yml similarity index 100% rename from data/fixtures/recorded/positions/replaceEndOfVestWithHello.yml rename to resources/fixtures/recorded/positions/replaceEndOfVestWithHello.yml diff --git a/data/fixtures/recorded/positions/replaceStartOfVestWithHello.yml b/resources/fixtures/recorded/positions/replaceStartOfVestWithHello.yml similarity index 100% rename from data/fixtures/recorded/positions/replaceStartOfVestWithHello.yml rename to resources/fixtures/recorded/positions/replaceStartOfVestWithHello.yml diff --git a/data/fixtures/recorded/positions/snipElseAfterThis.yml b/resources/fixtures/recorded/positions/snipElseAfterThis.yml similarity index 100% rename from data/fixtures/recorded/positions/snipElseAfterThis.yml rename to resources/fixtures/recorded/positions/snipElseAfterThis.yml diff --git a/data/fixtures/recorded/positions/takeEndOfWhale.yml b/resources/fixtures/recorded/positions/takeEndOfWhale.yml similarity index 100% rename from data/fixtures/recorded/positions/takeEndOfWhale.yml rename to resources/fixtures/recorded/positions/takeEndOfWhale.yml diff --git a/data/fixtures/recorded/positions/takeStartOfWhale.yml b/resources/fixtures/recorded/positions/takeStartOfWhale.yml similarity index 100% rename from data/fixtures/recorded/positions/takeStartOfWhale.yml rename to resources/fixtures/recorded/positions/takeStartOfWhale.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall10.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall10.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall10.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall10.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall11.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall11.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall11.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall11.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall12.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall12.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall12.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall12.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall14.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall14.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall14.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall14.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall15.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall15.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall15.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall15.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall2.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall2.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall2.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall2.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall3.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall3.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall3.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall3.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall4.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall4.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall4.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall4.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall5.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall5.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall5.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall5.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall7.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall7.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall7.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall7.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall8.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall8.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall8.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall8.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCall9.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCall9.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCall9.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCall9.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCallBat.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCallBat.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCallBat.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCallBat.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCallBat2.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCallBat2.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCallBat2.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCallBat2.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearCoreEveryClass.yml b/resources/fixtures/recorded/queryBasedMatchers/clearCoreEveryClass.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearCoreEveryClass.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearCoreEveryClass.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryCall.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryCall.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryCall.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryCall.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryCallLine.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryCallLine.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryCallLine.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryCallLine.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryClass.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryClass.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryClass.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryClass.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryClass2.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryClass2.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryClass2.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryClass2.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryClass3.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryClass3.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryClass3.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryClass3.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryClassName.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryClassName.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryClassName.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryClassName.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryFunk.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryFunk.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryFunk.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryFunk.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryFunk2.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryFunk2.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryFunk2.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryFunk2.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearEveryFunk3.yml b/resources/fixtures/recorded/queryBasedMatchers/clearEveryFunk3.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearEveryFunk3.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearEveryFunk3.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearFirstCall.yml b/resources/fixtures/recorded/queryBasedMatchers/clearFirstCall.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearFirstCall.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearFirstCall.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearLastCall.yml b/resources/fixtures/recorded/queryBasedMatchers/clearLastCall.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearLastCall.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearLastCall.yml diff --git a/data/fixtures/recorded/queryBasedMatchers/clearPreviousCall.yml b/resources/fixtures/recorded/queryBasedMatchers/clearPreviousCall.yml similarity index 100% rename from data/fixtures/recorded/queryBasedMatchers/clearPreviousCall.yml rename to resources/fixtures/recorded/queryBasedMatchers/clearPreviousCall.yml diff --git a/data/fixtures/recorded/relativeScopes/changeEveryNextThreeTokens.yml b/resources/fixtures/recorded/relativeScopes/changeEveryNextThreeTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeEveryNextThreeTokens.yml rename to resources/fixtures/recorded/relativeScopes/changeEveryNextThreeTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/changeEveryPreviousThreeTokens.yml b/resources/fixtures/recorded/relativeScopes/changeEveryPreviousThreeTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeEveryPreviousThreeTokens.yml rename to resources/fixtures/recorded/relativeScopes/changeEveryPreviousThreeTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/changeEveryThreeTokens.yml b/resources/fixtures/recorded/relativeScopes/changeEveryThreeTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeEveryThreeTokens.yml rename to resources/fixtures/recorded/relativeScopes/changeEveryThreeTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/changeEveryThreeTokensBackward.yml b/resources/fixtures/recorded/relativeScopes/changeEveryThreeTokensBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeEveryThreeTokensBackward.yml rename to resources/fixtures/recorded/relativeScopes/changeEveryThreeTokensBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/changeNextCall.yml b/resources/fixtures/recorded/relativeScopes/changeNextCall.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeNextCall.yml rename to resources/fixtures/recorded/relativeScopes/changeNextCall.yml diff --git a/data/fixtures/recorded/relativeScopes/changeNextPair.yml b/resources/fixtures/recorded/relativeScopes/changeNextPair.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeNextPair.yml rename to resources/fixtures/recorded/relativeScopes/changeNextPair.yml diff --git a/data/fixtures/recorded/relativeScopes/changeNextPair2.yml b/resources/fixtures/recorded/relativeScopes/changeNextPair2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeNextPair2.yml rename to resources/fixtures/recorded/relativeScopes/changeNextPair2.yml diff --git a/data/fixtures/recorded/relativeScopes/changeNextState.yml b/resources/fixtures/recorded/relativeScopes/changeNextState.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeNextState.yml rename to resources/fixtures/recorded/relativeScopes/changeNextState.yml diff --git a/data/fixtures/recorded/relativeScopes/changeNextState2.yml b/resources/fixtures/recorded/relativeScopes/changeNextState2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeNextState2.yml rename to resources/fixtures/recorded/relativeScopes/changeNextState2.yml diff --git a/data/fixtures/recorded/relativeScopes/changeNextState3.yml b/resources/fixtures/recorded/relativeScopes/changeNextState3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeNextState3.yml rename to resources/fixtures/recorded/relativeScopes/changeNextState3.yml diff --git a/data/fixtures/recorded/relativeScopes/changePreviousCall.yml b/resources/fixtures/recorded/relativeScopes/changePreviousCall.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changePreviousCall.yml rename to resources/fixtures/recorded/relativeScopes/changePreviousCall.yml diff --git a/data/fixtures/recorded/relativeScopes/changePreviousPair.yml b/resources/fixtures/recorded/relativeScopes/changePreviousPair.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changePreviousPair.yml rename to resources/fixtures/recorded/relativeScopes/changePreviousPair.yml diff --git a/data/fixtures/recorded/relativeScopes/changePreviousPair2.yml b/resources/fixtures/recorded/relativeScopes/changePreviousPair2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changePreviousPair2.yml rename to resources/fixtures/recorded/relativeScopes/changePreviousPair2.yml diff --git a/data/fixtures/recorded/relativeScopes/changePreviousState.yml b/resources/fixtures/recorded/relativeScopes/changePreviousState.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changePreviousState.yml rename to resources/fixtures/recorded/relativeScopes/changePreviousState.yml diff --git a/data/fixtures/recorded/relativeScopes/changePreviousState2.yml b/resources/fixtures/recorded/relativeScopes/changePreviousState2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changePreviousState2.yml rename to resources/fixtures/recorded/relativeScopes/changePreviousState2.yml diff --git a/data/fixtures/recorded/relativeScopes/changePreviousState3.yml b/resources/fixtures/recorded/relativeScopes/changePreviousState3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changePreviousState3.yml rename to resources/fixtures/recorded/relativeScopes/changePreviousState3.yml diff --git a/data/fixtures/recorded/relativeScopes/changeSpreadNextTwoTokens.yml b/resources/fixtures/recorded/relativeScopes/changeSpreadNextTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeSpreadNextTwoTokens.yml rename to resources/fixtures/recorded/relativeScopes/changeSpreadNextTwoTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/changeSpreadTwoTokens.yml b/resources/fixtures/recorded/relativeScopes/changeSpreadTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeSpreadTwoTokens.yml rename to resources/fixtures/recorded/relativeScopes/changeSpreadTwoTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/changeSpreadTwoTokensBackward.yml b/resources/fixtures/recorded/relativeScopes/changeSpreadTwoTokensBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/changeSpreadTwoTokensBackward.yml rename to resources/fixtures/recorded/relativeScopes/changeSpreadTwoTokensBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/clearFirstTokenRound.yml b/resources/fixtures/recorded/relativeScopes/clearFirstTokenRound.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearFirstTokenRound.yml rename to resources/fixtures/recorded/relativeScopes/clearFirstTokenRound.yml diff --git a/data/fixtures/recorded/relativeScopes/clearLastTokenRound.yml b/resources/fixtures/recorded/relativeScopes/clearLastTokenRound.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearLastTokenRound.yml rename to resources/fixtures/recorded/relativeScopes/clearLastTokenRound.yml diff --git a/data/fixtures/recorded/relativeScopes/clearLineBackward.yml b/resources/fixtures/recorded/relativeScopes/clearLineBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearLineBackward.yml rename to resources/fixtures/recorded/relativeScopes/clearLineBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall2.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall2.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall3.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall3.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall4.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall4.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall4.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall4.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall5.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall5.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall5.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall5.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall6.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall6.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall6.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall6.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall7.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall7.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall7.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall7.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextCall8.yml b/resources/fixtures/recorded/relativeScopes/clearNextCall8.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextCall8.yml rename to resources/fixtures/recorded/relativeScopes/clearNextCall8.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextState.yml b/resources/fixtures/recorded/relativeScopes/clearNextState.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextState.yml rename to resources/fixtures/recorded/relativeScopes/clearNextState.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextToken.yml b/resources/fixtures/recorded/relativeScopes/clearNextToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextToken.yml rename to resources/fixtures/recorded/relativeScopes/clearNextToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextToken2.yml b/resources/fixtures/recorded/relativeScopes/clearNextToken2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextToken2.yml rename to resources/fixtures/recorded/relativeScopes/clearNextToken2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextToken3.yml b/resources/fixtures/recorded/relativeScopes/clearNextToken3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextToken3.yml rename to resources/fixtures/recorded/relativeScopes/clearNextToken3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextTokenRound.yml b/resources/fixtures/recorded/relativeScopes/clearNextTokenRound.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextTokenRound.yml rename to resources/fixtures/recorded/relativeScopes/clearNextTokenRound.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextTwoToken.yml b/resources/fixtures/recorded/relativeScopes/clearNextTwoToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextTwoToken.yml rename to resources/fixtures/recorded/relativeScopes/clearNextTwoToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextTwoToken2.yml b/resources/fixtures/recorded/relativeScopes/clearNextTwoToken2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextTwoToken2.yml rename to resources/fixtures/recorded/relativeScopes/clearNextTwoToken2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearNextTwoTokens.yml b/resources/fixtures/recorded/relativeScopes/clearNextTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearNextTwoTokens.yml rename to resources/fixtures/recorded/relativeScopes/clearNextTwoTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/clearOneLines.yml b/resources/fixtures/recorded/relativeScopes/clearOneLines.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearOneLines.yml rename to resources/fixtures/recorded/relativeScopes/clearOneLines.yml diff --git a/data/fixtures/recorded/relativeScopes/clearOneToken.yml b/resources/fixtures/recorded/relativeScopes/clearOneToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearOneToken.yml rename to resources/fixtures/recorded/relativeScopes/clearOneToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearOneTokens.yml b/resources/fixtures/recorded/relativeScopes/clearOneTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearOneTokens.yml rename to resources/fixtures/recorded/relativeScopes/clearOneTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousState.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousState.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousState.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousState.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousState2.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousState2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousState2.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousState2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousState3.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousState3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousState3.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousState3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousToken.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousToken.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousTokenRound.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousTokenRound.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousTokenRound.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousTokenRound.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousTwoToken.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousTwoToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousTwoToken.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousTwoToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousTwoToken2.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousTwoToken2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousTwoToken2.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousTwoToken2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousTwoToken3.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousTwoToken3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousTwoToken3.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousTwoToken3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearPreviousTwoTokens.yml b/resources/fixtures/recorded/relativeScopes/clearPreviousTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearPreviousTwoTokens.yml rename to resources/fixtures/recorded/relativeScopes/clearPreviousTwoTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/clearSecondNextCall.yml b/resources/fixtures/recorded/relativeScopes/clearSecondNextCall.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearSecondNextCall.yml rename to resources/fixtures/recorded/relativeScopes/clearSecondNextCall.yml diff --git a/data/fixtures/recorded/relativeScopes/clearSecondNextCall2.yml b/resources/fixtures/recorded/relativeScopes/clearSecondNextCall2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearSecondNextCall2.yml rename to resources/fixtures/recorded/relativeScopes/clearSecondNextCall2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearSecondNextToken.yml b/resources/fixtures/recorded/relativeScopes/clearSecondNextToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearSecondNextToken.yml rename to resources/fixtures/recorded/relativeScopes/clearSecondNextToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearSecondPreviousToken.yml b/resources/fixtures/recorded/relativeScopes/clearSecondPreviousToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearSecondPreviousToken.yml rename to resources/fixtures/recorded/relativeScopes/clearSecondPreviousToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearThreeToken.yml b/resources/fixtures/recorded/relativeScopes/clearThreeToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearThreeToken.yml rename to resources/fixtures/recorded/relativeScopes/clearThreeToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearThreeTokenBackward.yml b/resources/fixtures/recorded/relativeScopes/clearThreeTokenBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearThreeTokenBackward.yml rename to resources/fixtures/recorded/relativeScopes/clearThreeTokenBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTokenBackward.yml b/resources/fixtures/recorded/relativeScopes/clearTokenBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTokenBackward.yml rename to resources/fixtures/recorded/relativeScopes/clearTokenBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTokenBackward2.yml b/resources/fixtures/recorded/relativeScopes/clearTokenBackward2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTokenBackward2.yml rename to resources/fixtures/recorded/relativeScopes/clearTokenBackward2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoCalls.yml b/resources/fixtures/recorded/relativeScopes/clearTwoCalls.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoCalls.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoCalls.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoCalls2.yml b/resources/fixtures/recorded/relativeScopes/clearTwoCalls2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoCalls2.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoCalls2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoCalls3.yml b/resources/fixtures/recorded/relativeScopes/clearTwoCalls3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoCalls3.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoCalls3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoCalls4.yml b/resources/fixtures/recorded/relativeScopes/clearTwoCalls4.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoCalls4.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoCalls4.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoCalls5.yml b/resources/fixtures/recorded/relativeScopes/clearTwoCalls5.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoCalls5.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoCalls5.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoCallsAir.yml b/resources/fixtures/recorded/relativeScopes/clearTwoCallsAir.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoCallsAir.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoCallsAir.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoCallsBat.yml b/resources/fixtures/recorded/relativeScopes/clearTwoCallsBat.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoCallsBat.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoCallsBat.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoLinesBackward.yml b/resources/fixtures/recorded/relativeScopes/clearTwoLinesBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoLinesBackward.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoLinesBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoStatesAir.yml b/resources/fixtures/recorded/relativeScopes/clearTwoStatesAir.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoStatesAir.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoStatesAir.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoToken.yml b/resources/fixtures/recorded/relativeScopes/clearTwoToken.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoToken.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoToken.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoToken2.yml b/resources/fixtures/recorded/relativeScopes/clearTwoToken2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoToken2.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoToken2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoToken3.yml b/resources/fixtures/recorded/relativeScopes/clearTwoToken3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoToken3.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoToken3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoToken4.yml b/resources/fixtures/recorded/relativeScopes/clearTwoToken4.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoToken4.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoToken4.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokenBackward.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokenBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokenBackward.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokenBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokenBackward2.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokenBackward2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokenBackward2.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokenBackward2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens2.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens2.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens3.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens3.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens4.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens4.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens4.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens4.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens5.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens5.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens5.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens5.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens6.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens6.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens6.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens6.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens7.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens7.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens7.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens7.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokens8.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokens8.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokens8.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokens8.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward2.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward2.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward2.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward3.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward3.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward3.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward4.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward4.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward4.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward4.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward5.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward5.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward5.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward5.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward6.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward6.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward6.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward6.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward7.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward7.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward7.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward7.yml diff --git a/data/fixtures/recorded/relativeScopes/clearTwoTokensBackward8.yml b/resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward8.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/clearTwoTokensBackward8.yml rename to resources/fixtures/recorded/relativeScopes/clearTwoTokensBackward8.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLines.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLines.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLines.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLines.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLinesBackward.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLinesBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLinesBackward.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearThreeLinesBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines2.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines2.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines2.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines3.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines3.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines3.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines3.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines4.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines4.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines4.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLines4.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward.yml diff --git a/data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward2.yml b/resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward2.yml similarity index 100% rename from data/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward2.yml rename to resources/fixtures/recorded/relativeScopes/emptyDomain/clearTwoLinesBackward2.yml diff --git a/data/fixtures/recorded/scope/glyph/clearEveryGlyphAir.yml b/resources/fixtures/recorded/scope/glyph/clearEveryGlyphAir.yml similarity index 100% rename from data/fixtures/recorded/scope/glyph/clearEveryGlyphAir.yml rename to resources/fixtures/recorded/scope/glyph/clearEveryGlyphAir.yml diff --git a/data/fixtures/recorded/scope/glyph/clearFinalGlyphAir.yml b/resources/fixtures/recorded/scope/glyph/clearFinalGlyphAir.yml similarity index 100% rename from data/fixtures/recorded/scope/glyph/clearFinalGlyphAir.yml rename to resources/fixtures/recorded/scope/glyph/clearFinalGlyphAir.yml diff --git a/data/fixtures/recorded/scope/glyph/clearGlyphAir.yml b/resources/fixtures/recorded/scope/glyph/clearGlyphAir.yml similarity index 100% rename from data/fixtures/recorded/scope/glyph/clearGlyphAir.yml rename to resources/fixtures/recorded/scope/glyph/clearGlyphAir.yml diff --git a/data/fixtures/recorded/scope/glyph/clearNextGlyphBat.yml b/resources/fixtures/recorded/scope/glyph/clearNextGlyphBat.yml similarity index 100% rename from data/fixtures/recorded/scope/glyph/clearNextGlyphBat.yml rename to resources/fixtures/recorded/scope/glyph/clearNextGlyphBat.yml diff --git a/data/fixtures/recorded/scope/glyph/clearNextGlyphDollar.yml b/resources/fixtures/recorded/scope/glyph/clearNextGlyphDollar.yml similarity index 100% rename from data/fixtures/recorded/scope/glyph/clearNextGlyphDollar.yml rename to resources/fixtures/recorded/scope/glyph/clearNextGlyphDollar.yml diff --git a/data/fixtures/recorded/scope/glyph/clearNextGlyphOnyx.yml b/resources/fixtures/recorded/scope/glyph/clearNextGlyphOnyx.yml similarity index 100% rename from data/fixtures/recorded/scope/glyph/clearNextGlyphOnyx.yml rename to resources/fixtures/recorded/scope/glyph/clearNextGlyphOnyx.yml diff --git a/data/fixtures/recorded/scopes/boundedNonWhitespaceSequence/changeNextShortPaint.yml b/resources/fixtures/recorded/scopes/boundedNonWhitespaceSequence/changeNextShortPaint.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedNonWhitespaceSequence/changeNextShortPaint.yml rename to resources/fixtures/recorded/scopes/boundedNonWhitespaceSequence/changeNextShortPaint.yml diff --git a/data/fixtures/recorded/scopes/boundedNonWhitespaceSequence/clearEveryShortPaint.yml b/resources/fixtures/recorded/scopes/boundedNonWhitespaceSequence/clearEveryShortPaint.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedNonWhitespaceSequence/clearEveryShortPaint.yml rename to resources/fixtures/recorded/scopes/boundedNonWhitespaceSequence/clearEveryShortPaint.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/changeShortBlock.yml b/resources/fixtures/recorded/scopes/boundedParagraph/changeShortBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/changeShortBlock.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/changeShortBlock.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/changeThreeShortBlocks.yml b/resources/fixtures/recorded/scopes/boundedParagraph/changeThreeShortBlocks.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/changeThreeShortBlocks.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/changeThreeShortBlocks.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks.yml b/resources/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks2.yml b/resources/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks2.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks2.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/changeTwoShortBlocks2.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/chuckShortBlock.yml b/resources/fixtures/recorded/scopes/boundedParagraph/chuckShortBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/chuckShortBlock.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/chuckShortBlock.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/chuckShortBlockBatPastHarp.yml b/resources/fixtures/recorded/scopes/boundedParagraph/chuckShortBlockBatPastHarp.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/chuckShortBlockBatPastHarp.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/chuckShortBlockBatPastHarp.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/chuckThreeShortBlocks.yml b/resources/fixtures/recorded/scopes/boundedParagraph/chuckThreeShortBlocks.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/chuckThreeShortBlocks.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/chuckThreeShortBlocks.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks.yml b/resources/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks.yml diff --git a/data/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks2.yml b/resources/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks2.yml similarity index 100% rename from data/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks2.yml rename to resources/fixtures/recorded/scopes/boundedParagraph/chuckTwoShortBlocks2.yml diff --git a/data/fixtures/recorded/scopes/character/changeChar.yml b/resources/fixtures/recorded/scopes/character/changeChar.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/changeChar.yml rename to resources/fixtures/recorded/scopes/character/changeChar.yml diff --git a/data/fixtures/recorded/scopes/character/clearCar.yml b/resources/fixtures/recorded/scopes/character/clearCar.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/clearCar.yml rename to resources/fixtures/recorded/scopes/character/clearCar.yml diff --git a/data/fixtures/recorded/scopes/character/clearCar2.yml b/resources/fixtures/recorded/scopes/character/clearCar2.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/clearCar2.yml rename to resources/fixtures/recorded/scopes/character/clearCar2.yml diff --git a/data/fixtures/recorded/scopes/character/clearCar3.yml b/resources/fixtures/recorded/scopes/character/clearCar3.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/clearCar3.yml rename to resources/fixtures/recorded/scopes/character/clearCar3.yml diff --git a/data/fixtures/recorded/scopes/character/clearCar4.yml b/resources/fixtures/recorded/scopes/character/clearCar4.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/clearCar4.yml rename to resources/fixtures/recorded/scopes/character/clearCar4.yml diff --git a/data/fixtures/recorded/scopes/character/clearNextCar.yml b/resources/fixtures/recorded/scopes/character/clearNextCar.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/clearNextCar.yml rename to resources/fixtures/recorded/scopes/character/clearNextCar.yml diff --git a/data/fixtures/recorded/scopes/character/clearPreviousCar.yml b/resources/fixtures/recorded/scopes/character/clearPreviousCar.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/clearPreviousCar.yml rename to resources/fixtures/recorded/scopes/character/clearPreviousCar.yml diff --git a/data/fixtures/recorded/scopes/character/clearTwentiethNextCar.yml b/resources/fixtures/recorded/scopes/character/clearTwentiethNextCar.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/clearTwentiethNextCar.yml rename to resources/fixtures/recorded/scopes/character/clearTwentiethNextCar.yml diff --git a/data/fixtures/recorded/scopes/character/ditchFirstCarLeadingBat.yml b/resources/fixtures/recorded/scopes/character/ditchFirstCarLeadingBat.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/ditchFirstCarLeadingBat.yml rename to resources/fixtures/recorded/scopes/character/ditchFirstCarLeadingBat.yml diff --git a/data/fixtures/recorded/scopes/character/takeCarForward.yml b/resources/fixtures/recorded/scopes/character/takeCarForward.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/takeCarForward.yml rename to resources/fixtures/recorded/scopes/character/takeCarForward.yml diff --git a/data/fixtures/recorded/scopes/character/takeEveryCarFile.yml b/resources/fixtures/recorded/scopes/character/takeEveryCarFile.yml similarity index 100% rename from data/fixtures/recorded/scopes/character/takeEveryCarFile.yml rename to resources/fixtures/recorded/scopes/character/takeEveryCarFile.yml diff --git a/data/fixtures/recorded/scopes/clearEveryIdentifier.yml b/resources/fixtures/recorded/scopes/clearEveryIdentifier.yml similarity index 100% rename from data/fixtures/recorded/scopes/clearEveryIdentifier.yml rename to resources/fixtures/recorded/scopes/clearEveryIdentifier.yml diff --git a/data/fixtures/recorded/scopes/clearIdentifier.yml b/resources/fixtures/recorded/scopes/clearIdentifier.yml similarity index 100% rename from data/fixtures/recorded/scopes/clearIdentifier.yml rename to resources/fixtures/recorded/scopes/clearIdentifier.yml diff --git a/data/fixtures/recorded/scopes/clearIdentifier2.yml b/resources/fixtures/recorded/scopes/clearIdentifier2.yml similarity index 100% rename from data/fixtures/recorded/scopes/clearIdentifier2.yml rename to resources/fixtures/recorded/scopes/clearIdentifier2.yml diff --git a/data/fixtures/recorded/scopes/clearLastIdentifier.yml b/resources/fixtures/recorded/scopes/clearLastIdentifier.yml similarity index 100% rename from data/fixtures/recorded/scopes/clearLastIdentifier.yml rename to resources/fixtures/recorded/scopes/clearLastIdentifier.yml diff --git a/data/fixtures/recorded/scopes/line/clearTwoLines.yml b/resources/fixtures/recorded/scopes/line/clearTwoLines.yml similarity index 100% rename from data/fixtures/recorded/scopes/line/clearTwoLines.yml rename to resources/fixtures/recorded/scopes/line/clearTwoLines.yml diff --git a/data/fixtures/recorded/scopes/paragraph/chuckBlockAir.yml b/resources/fixtures/recorded/scopes/paragraph/chuckBlockAir.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/chuckBlockAir.yml rename to resources/fixtures/recorded/scopes/paragraph/chuckBlockAir.yml diff --git a/data/fixtures/recorded/scopes/paragraph/chuckBlockAir2.yml b/resources/fixtures/recorded/scopes/paragraph/chuckBlockAir2.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/chuckBlockAir2.yml rename to resources/fixtures/recorded/scopes/paragraph/chuckBlockAir2.yml diff --git a/data/fixtures/recorded/scopes/paragraph/chuckBlockHarpBetweenFine.yml b/resources/fixtures/recorded/scopes/paragraph/chuckBlockHarpBetweenFine.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/chuckBlockHarpBetweenFine.yml rename to resources/fixtures/recorded/scopes/paragraph/chuckBlockHarpBetweenFine.yml diff --git a/data/fixtures/recorded/scopes/paragraph/chuckBlockVest.yml b/resources/fixtures/recorded/scopes/paragraph/chuckBlockVest.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/chuckBlockVest.yml rename to resources/fixtures/recorded/scopes/paragraph/chuckBlockVest.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearBlock.yml b/resources/fixtures/recorded/scopes/paragraph/clearBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearBlock.yml rename to resources/fixtures/recorded/scopes/paragraph/clearBlock.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearBlock2.yml b/resources/fixtures/recorded/scopes/paragraph/clearBlock2.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearBlock2.yml rename to resources/fixtures/recorded/scopes/paragraph/clearBlock2.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearBlock3.yml b/resources/fixtures/recorded/scopes/paragraph/clearBlock3.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearBlock3.yml rename to resources/fixtures/recorded/scopes/paragraph/clearBlock3.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearNextBlock.yml b/resources/fixtures/recorded/scopes/paragraph/clearNextBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearNextBlock.yml rename to resources/fixtures/recorded/scopes/paragraph/clearNextBlock.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearNextBlock2.yml b/resources/fixtures/recorded/scopes/paragraph/clearNextBlock2.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearNextBlock2.yml rename to resources/fixtures/recorded/scopes/paragraph/clearNextBlock2.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearNextBlock3.yml b/resources/fixtures/recorded/scopes/paragraph/clearNextBlock3.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearNextBlock3.yml rename to resources/fixtures/recorded/scopes/paragraph/clearNextBlock3.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearPreviousBlock.yml b/resources/fixtures/recorded/scopes/paragraph/clearPreviousBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearPreviousBlock.yml rename to resources/fixtures/recorded/scopes/paragraph/clearPreviousBlock.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearPreviousBlock2.yml b/resources/fixtures/recorded/scopes/paragraph/clearPreviousBlock2.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearPreviousBlock2.yml rename to resources/fixtures/recorded/scopes/paragraph/clearPreviousBlock2.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearPreviousBlock3.yml b/resources/fixtures/recorded/scopes/paragraph/clearPreviousBlock3.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearPreviousBlock3.yml rename to resources/fixtures/recorded/scopes/paragraph/clearPreviousBlock3.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearTwoBlocks.yml b/resources/fixtures/recorded/scopes/paragraph/clearTwoBlocks.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearTwoBlocks.yml rename to resources/fixtures/recorded/scopes/paragraph/clearTwoBlocks.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearTwoBlocks2.yml b/resources/fixtures/recorded/scopes/paragraph/clearTwoBlocks2.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearTwoBlocks2.yml rename to resources/fixtures/recorded/scopes/paragraph/clearTwoBlocks2.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearTwoBlocks3.yml b/resources/fixtures/recorded/scopes/paragraph/clearTwoBlocks3.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearTwoBlocks3.yml rename to resources/fixtures/recorded/scopes/paragraph/clearTwoBlocks3.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward.yml b/resources/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward.yml rename to resources/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward2.yml b/resources/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward2.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward2.yml rename to resources/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward2.yml diff --git a/data/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward3.yml b/resources/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward3.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward3.yml rename to resources/fixtures/recorded/scopes/paragraph/clearTwoBlocksBackward3.yml diff --git a/data/fixtures/recorded/scopes/paragraph/drinkBlock.yml b/resources/fixtures/recorded/scopes/paragraph/drinkBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/drinkBlock.yml rename to resources/fixtures/recorded/scopes/paragraph/drinkBlock.yml diff --git a/data/fixtures/recorded/scopes/paragraph/pourBlock.yml b/resources/fixtures/recorded/scopes/paragraph/pourBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/pourBlock.yml rename to resources/fixtures/recorded/scopes/paragraph/pourBlock.yml diff --git a/data/fixtures/recorded/scopes/paragraph/takeBlockAir.yml b/resources/fixtures/recorded/scopes/paragraph/takeBlockAir.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/takeBlockAir.yml rename to resources/fixtures/recorded/scopes/paragraph/takeBlockAir.yml diff --git a/data/fixtures/recorded/scopes/paragraph/takeEveryBlock.yml b/resources/fixtures/recorded/scopes/paragraph/takeEveryBlock.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/takeEveryBlock.yml rename to resources/fixtures/recorded/scopes/paragraph/takeEveryBlock.yml diff --git a/data/fixtures/recorded/scopes/paragraph/takeEveryBlock2.yml b/resources/fixtures/recorded/scopes/paragraph/takeEveryBlock2.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/takeEveryBlock2.yml rename to resources/fixtures/recorded/scopes/paragraph/takeEveryBlock2.yml diff --git a/data/fixtures/recorded/scopes/paragraph/takeEveryBlock3.yml b/resources/fixtures/recorded/scopes/paragraph/takeEveryBlock3.yml similarity index 100% rename from data/fixtures/recorded/scopes/paragraph/takeEveryBlock3.yml rename to resources/fixtures/recorded/scopes/paragraph/takeEveryBlock3.yml diff --git a/data/fixtures/recorded/scopes/sentence/changeEverySentence.yml b/resources/fixtures/recorded/scopes/sentence/changeEverySentence.yml similarity index 100% rename from data/fixtures/recorded/scopes/sentence/changeEverySentence.yml rename to resources/fixtures/recorded/scopes/sentence/changeEverySentence.yml diff --git a/data/fixtures/recorded/scopes/sentence/chuckSentence.yml b/resources/fixtures/recorded/scopes/sentence/chuckSentence.yml similarity index 100% rename from data/fixtures/recorded/scopes/sentence/chuckSentence.yml rename to resources/fixtures/recorded/scopes/sentence/chuckSentence.yml diff --git a/data/fixtures/recorded/scopes/sentence/clearEverySentence.yml b/resources/fixtures/recorded/scopes/sentence/clearEverySentence.yml similarity index 100% rename from data/fixtures/recorded/scopes/sentence/clearEverySentence.yml rename to resources/fixtures/recorded/scopes/sentence/clearEverySentence.yml diff --git a/data/fixtures/recorded/scopes/sentence/clearEverySentenceFile.yml b/resources/fixtures/recorded/scopes/sentence/clearEverySentenceFile.yml similarity index 100% rename from data/fixtures/recorded/scopes/sentence/clearEverySentenceFile.yml rename to resources/fixtures/recorded/scopes/sentence/clearEverySentenceFile.yml diff --git a/data/fixtures/recorded/scopes/sentence/clearSentence.yml b/resources/fixtures/recorded/scopes/sentence/clearSentence.yml similarity index 100% rename from data/fixtures/recorded/scopes/sentence/clearSentence.yml rename to resources/fixtures/recorded/scopes/sentence/clearSentence.yml diff --git a/data/fixtures/recorded/scopes/sentence/clearSentence2.yml b/resources/fixtures/recorded/scopes/sentence/clearSentence2.yml similarity index 100% rename from data/fixtures/recorded/scopes/sentence/clearSentence2.yml rename to resources/fixtures/recorded/scopes/sentence/clearSentence2.yml diff --git a/data/fixtures/recorded/scopes/token/changeToken.yml b/resources/fixtures/recorded/scopes/token/changeToken.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/changeToken.yml rename to resources/fixtures/recorded/scopes/token/changeToken.yml diff --git a/data/fixtures/recorded/scopes/token/chuckBat.yml b/resources/fixtures/recorded/scopes/token/chuckBat.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckBat.yml rename to resources/fixtures/recorded/scopes/token/chuckBat.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken.yml b/resources/fixtures/recorded/scopes/token/chuckToken.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken.yml rename to resources/fixtures/recorded/scopes/token/chuckToken.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken10.yml b/resources/fixtures/recorded/scopes/token/chuckToken10.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken10.yml rename to resources/fixtures/recorded/scopes/token/chuckToken10.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken11.yml b/resources/fixtures/recorded/scopes/token/chuckToken11.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken11.yml rename to resources/fixtures/recorded/scopes/token/chuckToken11.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken12.yml b/resources/fixtures/recorded/scopes/token/chuckToken12.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken12.yml rename to resources/fixtures/recorded/scopes/token/chuckToken12.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken13.yml b/resources/fixtures/recorded/scopes/token/chuckToken13.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken13.yml rename to resources/fixtures/recorded/scopes/token/chuckToken13.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken14.yml b/resources/fixtures/recorded/scopes/token/chuckToken14.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken14.yml rename to resources/fixtures/recorded/scopes/token/chuckToken14.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken2.yml b/resources/fixtures/recorded/scopes/token/chuckToken2.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken2.yml rename to resources/fixtures/recorded/scopes/token/chuckToken2.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken3.yml b/resources/fixtures/recorded/scopes/token/chuckToken3.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken3.yml rename to resources/fixtures/recorded/scopes/token/chuckToken3.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken4.yml b/resources/fixtures/recorded/scopes/token/chuckToken4.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken4.yml rename to resources/fixtures/recorded/scopes/token/chuckToken4.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken5.yml b/resources/fixtures/recorded/scopes/token/chuckToken5.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken5.yml rename to resources/fixtures/recorded/scopes/token/chuckToken5.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken6.yml b/resources/fixtures/recorded/scopes/token/chuckToken6.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken6.yml rename to resources/fixtures/recorded/scopes/token/chuckToken6.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken7.yml b/resources/fixtures/recorded/scopes/token/chuckToken7.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken7.yml rename to resources/fixtures/recorded/scopes/token/chuckToken7.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken8.yml b/resources/fixtures/recorded/scopes/token/chuckToken8.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken8.yml rename to resources/fixtures/recorded/scopes/token/chuckToken8.yml diff --git a/data/fixtures/recorded/scopes/token/chuckToken9.yml b/resources/fixtures/recorded/scopes/token/chuckToken9.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/chuckToken9.yml rename to resources/fixtures/recorded/scopes/token/chuckToken9.yml diff --git a/data/fixtures/recorded/scopes/token/clearTokenBackward.yml b/resources/fixtures/recorded/scopes/token/clearTokenBackward.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/clearTokenBackward.yml rename to resources/fixtures/recorded/scopes/token/clearTokenBackward.yml diff --git a/data/fixtures/recorded/scopes/token/clearTokenBackward2.yml b/resources/fixtures/recorded/scopes/token/clearTokenBackward2.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/clearTokenBackward2.yml rename to resources/fixtures/recorded/scopes/token/clearTokenBackward2.yml diff --git a/data/fixtures/recorded/scopes/token/clearTokenForward.yml b/resources/fixtures/recorded/scopes/token/clearTokenForward.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/clearTokenForward.yml rename to resources/fixtures/recorded/scopes/token/clearTokenForward.yml diff --git a/data/fixtures/recorded/scopes/token/clearTokenForward2.yml b/resources/fixtures/recorded/scopes/token/clearTokenForward2.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/clearTokenForward2.yml rename to resources/fixtures/recorded/scopes/token/clearTokenForward2.yml diff --git a/data/fixtures/recorded/scopes/token/ditchFine.yml b/resources/fixtures/recorded/scopes/token/ditchFine.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/ditchFine.yml rename to resources/fixtures/recorded/scopes/token/ditchFine.yml diff --git a/data/fixtures/recorded/scopes/token/ditchFinePastBat.yml b/resources/fixtures/recorded/scopes/token/ditchFinePastBat.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/ditchFinePastBat.yml rename to resources/fixtures/recorded/scopes/token/ditchFinePastBat.yml diff --git a/data/fixtures/recorded/scopes/token/ditchFinePastPoint.yml b/resources/fixtures/recorded/scopes/token/ditchFinePastPoint.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/ditchFinePastPoint.yml rename to resources/fixtures/recorded/scopes/token/ditchFinePastPoint.yml diff --git a/data/fixtures/recorded/scopes/token/ditchFinePastPoint2.yml b/resources/fixtures/recorded/scopes/token/ditchFinePastPoint2.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/ditchFinePastPoint2.yml rename to resources/fixtures/recorded/scopes/token/ditchFinePastPoint2.yml diff --git a/data/fixtures/recorded/scopes/token/takeToken.yml b/resources/fixtures/recorded/scopes/token/takeToken.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/takeToken.yml rename to resources/fixtures/recorded/scopes/token/takeToken.yml diff --git a/data/fixtures/recorded/scopes/token/takeToken2.yml b/resources/fixtures/recorded/scopes/token/takeToken2.yml similarity index 100% rename from data/fixtures/recorded/scopes/token/takeToken2.yml rename to resources/fixtures/recorded/scopes/token/takeToken2.yml diff --git a/data/fixtures/recorded/selectionTypes/bringHarpToAfterFile.yml b/resources/fixtures/recorded/selectionTypes/bringHarpToAfterFile.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/bringHarpToAfterFile.yml rename to resources/fixtures/recorded/selectionTypes/bringHarpToAfterFile.yml diff --git a/data/fixtures/recorded/selectionTypes/bringWhaleToBeforeFile.yml b/resources/fixtures/recorded/selectionTypes/bringWhaleToBeforeFile.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/bringWhaleToBeforeFile.yml rename to resources/fixtures/recorded/selectionTypes/bringWhaleToBeforeFile.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryPaint.yml b/resources/fixtures/recorded/selectionTypes/changeEveryPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryPaint.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryPaint2.yml b/resources/fixtures/recorded/selectionTypes/changeEveryPaint2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryPaint2.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryPaint2.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryPaint3.yml b/resources/fixtures/recorded/selectionTypes/changeEveryPaint3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryPaint3.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryPaint3.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryPaintInside.yml b/resources/fixtures/recorded/selectionTypes/changeEveryPaintInside.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryPaintInside.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryPaintInside.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryPaintPairParen2.yml b/resources/fixtures/recorded/selectionTypes/changeEveryPaintPairParen2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryPaintPairParen2.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryPaintPairParen2.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryShortPaint.yml b/resources/fixtures/recorded/selectionTypes/changeEveryShortPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryShortPaint.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryShortPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryShortPaint2.yml b/resources/fixtures/recorded/selectionTypes/changeEveryShortPaint2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryShortPaint2.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryShortPaint2.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryShortPaint3.yml b/resources/fixtures/recorded/selectionTypes/changeEveryShortPaint3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryShortPaint3.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryShortPaint3.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryShortPaint4.yml b/resources/fixtures/recorded/selectionTypes/changeEveryShortPaint4.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryShortPaint4.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryShortPaint4.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryShortPaintInside.yml b/resources/fixtures/recorded/selectionTypes/changeEveryShortPaintInside.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryShortPaintInside.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryShortPaintInside.yml diff --git a/data/fixtures/recorded/selectionTypes/changeEveryShortPaintPairParen.yml b/resources/fixtures/recorded/selectionTypes/changeEveryShortPaintPairParen.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeEveryShortPaintPairParen.yml rename to resources/fixtures/recorded/selectionTypes/changeEveryShortPaintPairParen.yml diff --git a/data/fixtures/recorded/selectionTypes/changeShortPaintParen.yml b/resources/fixtures/recorded/selectionTypes/changeShortPaintParen.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/changeShortPaintParen.yml rename to resources/fixtures/recorded/selectionTypes/changeShortPaintParen.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckDot.yml b/resources/fixtures/recorded/selectionTypes/chuckDot.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckDot.yml rename to resources/fixtures/recorded/selectionTypes/chuckDot.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckDot2.yml b/resources/fixtures/recorded/selectionTypes/chuckDot2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckDot2.yml rename to resources/fixtures/recorded/selectionTypes/chuckDot2.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckDot3.yml b/resources/fixtures/recorded/selectionTypes/chuckDot3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckDot3.yml rename to resources/fixtures/recorded/selectionTypes/chuckDot3.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckEveryShortPaint.yml b/resources/fixtures/recorded/selectionTypes/chuckEveryShortPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckEveryShortPaint.yml rename to resources/fixtures/recorded/selectionTypes/chuckEveryShortPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckFile.yml b/resources/fixtures/recorded/selectionTypes/chuckFile.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckFile.yml rename to resources/fixtures/recorded/selectionTypes/chuckFile.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckFile2.yml b/resources/fixtures/recorded/selectionTypes/chuckFile2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckFile2.yml rename to resources/fixtures/recorded/selectionTypes/chuckFile2.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckLastTwoItem.yml b/resources/fixtures/recorded/selectionTypes/chuckLastTwoItem.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckLastTwoItem.yml rename to resources/fixtures/recorded/selectionTypes/chuckLastTwoItem.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckLineVest.yml b/resources/fixtures/recorded/selectionTypes/chuckLineVest.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckLineVest.yml rename to resources/fixtures/recorded/selectionTypes/chuckLineVest.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckLineVest2.yml b/resources/fixtures/recorded/selectionTypes/chuckLineVest2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckLineVest2.yml rename to resources/fixtures/recorded/selectionTypes/chuckLineVest2.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckLinkMade.yml b/resources/fixtures/recorded/selectionTypes/chuckLinkMade.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckLinkMade.yml rename to resources/fixtures/recorded/selectionTypes/chuckLinkMade.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckLinkMadePastLinkAir.yml b/resources/fixtures/recorded/selectionTypes/chuckLinkMadePastLinkAir.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckLinkMadePastLinkAir.yml rename to resources/fixtures/recorded/selectionTypes/chuckLinkMadePastLinkAir.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckLinkPit.yml b/resources/fixtures/recorded/selectionTypes/chuckLinkPit.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckLinkPit.yml rename to resources/fixtures/recorded/selectionTypes/chuckLinkPit.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckPaintBatt.yml b/resources/fixtures/recorded/selectionTypes/chuckPaintBatt.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckPaintBatt.yml rename to resources/fixtures/recorded/selectionTypes/chuckPaintBatt.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckSmallPaintAir.yml b/resources/fixtures/recorded/selectionTypes/chuckSmallPaintAir.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckSmallPaintAir.yml rename to resources/fixtures/recorded/selectionTypes/chuckSmallPaintAir.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckSmallPaintFine.yml b/resources/fixtures/recorded/selectionTypes/chuckSmallPaintFine.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckSmallPaintFine.yml rename to resources/fixtures/recorded/selectionTypes/chuckSmallPaintFine.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckSmallPaintFine2.yml b/resources/fixtures/recorded/selectionTypes/chuckSmallPaintFine2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckSmallPaintFine2.yml rename to resources/fixtures/recorded/selectionTypes/chuckSmallPaintFine2.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckSmallPaintSoap2.yml b/resources/fixtures/recorded/selectionTypes/chuckSmallPaintSoap2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckSmallPaintSoap2.yml rename to resources/fixtures/recorded/selectionTypes/chuckSmallPaintSoap2.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckSmallPaintZero.yml b/resources/fixtures/recorded/selectionTypes/chuckSmallPaintZero.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckSmallPaintZero.yml rename to resources/fixtures/recorded/selectionTypes/chuckSmallPaintZero.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckTokenVest.yml b/resources/fixtures/recorded/selectionTypes/chuckTokenVest.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckTokenVest.yml rename to resources/fixtures/recorded/selectionTypes/chuckTokenVest.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckWord.yml b/resources/fixtures/recorded/selectionTypes/chuckWord.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckWord.yml rename to resources/fixtures/recorded/selectionTypes/chuckWord.yml diff --git a/data/fixtures/recorded/selectionTypes/chuckWord2.yml b/resources/fixtures/recorded/selectionTypes/chuckWord2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/chuckWord2.yml rename to resources/fixtures/recorded/selectionTypes/chuckWord2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCar.yml b/resources/fixtures/recorded/selectionTypes/clearCar.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCar.yml rename to resources/fixtures/recorded/selectionTypes/clearCar.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCar2.yml b/resources/fixtures/recorded/selectionTypes/clearCar2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCar2.yml rename to resources/fixtures/recorded/selectionTypes/clearCar2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCar3.yml b/resources/fixtures/recorded/selectionTypes/clearCar3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCar3.yml rename to resources/fixtures/recorded/selectionTypes/clearCar3.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCar4.yml b/resources/fixtures/recorded/selectionTypes/clearCar4.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCar4.yml rename to resources/fixtures/recorded/selectionTypes/clearCar4.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCar5.yml b/resources/fixtures/recorded/selectionTypes/clearCar5.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCar5.yml rename to resources/fixtures/recorded/selectionTypes/clearCar5.yml diff --git a/data/fixtures/recorded/selectionTypes/clearContent.yml b/resources/fixtures/recorded/selectionTypes/clearContent.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearContent.yml rename to resources/fixtures/recorded/selectionTypes/clearContent.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCore.yml b/resources/fixtures/recorded/selectionTypes/clearCore.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCore.yml rename to resources/fixtures/recorded/selectionTypes/clearCore.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCore2.yml b/resources/fixtures/recorded/selectionTypes/clearCore2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCore2.yml rename to resources/fixtures/recorded/selectionTypes/clearCore2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearCustomRegex.yml b/resources/fixtures/recorded/selectionTypes/clearCustomRegex.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearCustomRegex.yml rename to resources/fixtures/recorded/selectionTypes/clearCustomRegex.yml diff --git a/data/fixtures/recorded/selectionTypes/clearEmpty.yml b/resources/fixtures/recorded/selectionTypes/clearEmpty.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearEmpty.yml rename to resources/fixtures/recorded/selectionTypes/clearEmpty.yml diff --git a/data/fixtures/recorded/selectionTypes/clearEveryCustomRegex.yml b/resources/fixtures/recorded/selectionTypes/clearEveryCustomRegex.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearEveryCustomRegex.yml rename to resources/fixtures/recorded/selectionTypes/clearEveryCustomRegex.yml diff --git a/data/fixtures/recorded/selectionTypes/clearEveryShortPaint.yml b/resources/fixtures/recorded/selectionTypes/clearEveryShortPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearEveryShortPaint.yml rename to resources/fixtures/recorded/selectionTypes/clearEveryShortPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/clearEveryShortPaint2.yml b/resources/fixtures/recorded/selectionTypes/clearEveryShortPaint2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearEveryShortPaint2.yml rename to resources/fixtures/recorded/selectionTypes/clearEveryShortPaint2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearFirstTwoItem.yml b/resources/fixtures/recorded/selectionTypes/clearFirstTwoItem.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearFirstTwoItem.yml rename to resources/fixtures/recorded/selectionTypes/clearFirstTwoItem.yml diff --git a/data/fixtures/recorded/selectionTypes/clearHeadCore.yml b/resources/fixtures/recorded/selectionTypes/clearHeadCore.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearHeadCore.yml rename to resources/fixtures/recorded/selectionTypes/clearHeadCore.yml diff --git a/data/fixtures/recorded/selectionTypes/clearHeadCoreCurly.yml b/resources/fixtures/recorded/selectionTypes/clearHeadCoreCurly.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearHeadCoreCurly.yml rename to resources/fixtures/recorded/selectionTypes/clearHeadCoreCurly.yml diff --git a/data/fixtures/recorded/selectionTypes/clearHeadFunk.yml b/resources/fixtures/recorded/selectionTypes/clearHeadFunk.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearHeadFunk.yml rename to resources/fixtures/recorded/selectionTypes/clearHeadFunk.yml diff --git a/data/fixtures/recorded/selectionTypes/clearLastTwoItem.yml b/resources/fixtures/recorded/selectionTypes/clearLastTwoItem.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearLastTwoItem.yml rename to resources/fixtures/recorded/selectionTypes/clearLastTwoItem.yml diff --git a/data/fixtures/recorded/selectionTypes/clearLeading.yml b/resources/fixtures/recorded/selectionTypes/clearLeading.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearLeading.yml rename to resources/fixtures/recorded/selectionTypes/clearLeading.yml diff --git a/data/fixtures/recorded/selectionTypes/clearLinePair.yml b/resources/fixtures/recorded/selectionTypes/clearLinePair.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearLinePair.yml rename to resources/fixtures/recorded/selectionTypes/clearLinePair.yml diff --git a/data/fixtures/recorded/selectionTypes/clearNextFile.yml b/resources/fixtures/recorded/selectionTypes/clearNextFile.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearNextFile.yml rename to resources/fixtures/recorded/selectionTypes/clearNextFile.yml diff --git a/data/fixtures/recorded/selectionTypes/clearNextFunk.yml b/resources/fixtures/recorded/selectionTypes/clearNextFunk.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearNextFunk.yml rename to resources/fixtures/recorded/selectionTypes/clearNextFunk.yml diff --git a/data/fixtures/recorded/selectionTypes/clearNextToken.yml b/resources/fixtures/recorded/selectionTypes/clearNextToken.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearNextToken.yml rename to resources/fixtures/recorded/selectionTypes/clearNextToken.yml diff --git a/data/fixtures/recorded/selectionTypes/clearNextWord.yml b/resources/fixtures/recorded/selectionTypes/clearNextWord.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearNextWord.yml rename to resources/fixtures/recorded/selectionTypes/clearNextWord.yml diff --git a/data/fixtures/recorded/selectionTypes/clearNextWord2.yml b/resources/fixtures/recorded/selectionTypes/clearNextWord2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearNextWord2.yml rename to resources/fixtures/recorded/selectionTypes/clearNextWord2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearNextWord3.yml b/resources/fixtures/recorded/selectionTypes/clearNextWord3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearNextWord3.yml rename to resources/fixtures/recorded/selectionTypes/clearNextWord3.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPaint.yml b/resources/fixtures/recorded/selectionTypes/clearPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPaint.yml rename to resources/fixtures/recorded/selectionTypes/clearPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPaintBatt.yml b/resources/fixtures/recorded/selectionTypes/clearPaintBatt.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPaintBatt.yml rename to resources/fixtures/recorded/selectionTypes/clearPaintBatt.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPaintBattPastBlueBatt.yml b/resources/fixtures/recorded/selectionTypes/clearPaintBattPastBlueBatt.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPaintBattPastBlueBatt.yml rename to resources/fixtures/recorded/selectionTypes/clearPaintBattPastBlueBatt.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPreviousFunk.yml b/resources/fixtures/recorded/selectionTypes/clearPreviousFunk.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPreviousFunk.yml rename to resources/fixtures/recorded/selectionTypes/clearPreviousFunk.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPreviousToken.yml b/resources/fixtures/recorded/selectionTypes/clearPreviousToken.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPreviousToken.yml rename to resources/fixtures/recorded/selectionTypes/clearPreviousToken.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPreviousWord.yml b/resources/fixtures/recorded/selectionTypes/clearPreviousWord.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPreviousWord.yml rename to resources/fixtures/recorded/selectionTypes/clearPreviousWord.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPreviousWord2.yml b/resources/fixtures/recorded/selectionTypes/clearPreviousWord2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPreviousWord2.yml rename to resources/fixtures/recorded/selectionTypes/clearPreviousWord2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearPreviousWord3.yml b/resources/fixtures/recorded/selectionTypes/clearPreviousWord3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearPreviousWord3.yml rename to resources/fixtures/recorded/selectionTypes/clearPreviousWord3.yml diff --git a/data/fixtures/recorded/selectionTypes/clearRowTwoPastFour.yml b/resources/fixtures/recorded/selectionTypes/clearRowTwoPastFour.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearRowTwoPastFour.yml rename to resources/fixtures/recorded/selectionTypes/clearRowTwoPastFour.yml diff --git a/data/fixtures/recorded/selectionTypes/clearRowTwoUntilFour.yml b/resources/fixtures/recorded/selectionTypes/clearRowTwoUntilFour.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearRowTwoUntilFour.yml rename to resources/fixtures/recorded/selectionTypes/clearRowTwoUntilFour.yml diff --git a/data/fixtures/recorded/selectionTypes/clearSecondBetweenThirdItem.yml b/resources/fixtures/recorded/selectionTypes/clearSecondBetweenThirdItem.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearSecondBetweenThirdItem.yml rename to resources/fixtures/recorded/selectionTypes/clearSecondBetweenThirdItem.yml diff --git a/data/fixtures/recorded/selectionTypes/clearSecondItem.yml b/resources/fixtures/recorded/selectionTypes/clearSecondItem.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearSecondItem.yml rename to resources/fixtures/recorded/selectionTypes/clearSecondItem.yml diff --git a/data/fixtures/recorded/selectionTypes/clearSecondLastWord.yml b/resources/fixtures/recorded/selectionTypes/clearSecondLastWord.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearSecondLastWord.yml rename to resources/fixtures/recorded/selectionTypes/clearSecondLastWord.yml diff --git a/data/fixtures/recorded/selectionTypes/clearSecondNextWord.yml b/resources/fixtures/recorded/selectionTypes/clearSecondNextWord.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearSecondNextWord.yml rename to resources/fixtures/recorded/selectionTypes/clearSecondNextWord.yml diff --git a/data/fixtures/recorded/selectionTypes/clearSecondPastThirdItem.yml b/resources/fixtures/recorded/selectionTypes/clearSecondPastThirdItem.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearSecondPastThirdItem.yml rename to resources/fixtures/recorded/selectionTypes/clearSecondPastThirdItem.yml diff --git a/data/fixtures/recorded/selectionTypes/clearSecondUntilFourthItem.yml b/resources/fixtures/recorded/selectionTypes/clearSecondUntilFourthItem.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearSecondUntilFourthItem.yml rename to resources/fixtures/recorded/selectionTypes/clearSecondUntilFourthItem.yml diff --git a/data/fixtures/recorded/selectionTypes/clearShortPaint.yml b/resources/fixtures/recorded/selectionTypes/clearShortPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearShortPaint.yml rename to resources/fixtures/recorded/selectionTypes/clearShortPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/clearShortPaint2.yml b/resources/fixtures/recorded/selectionTypes/clearShortPaint2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearShortPaint2.yml rename to resources/fixtures/recorded/selectionTypes/clearShortPaint2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearShortPaint3.yml b/resources/fixtures/recorded/selectionTypes/clearShortPaint3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearShortPaint3.yml rename to resources/fixtures/recorded/selectionTypes/clearShortPaint3.yml diff --git a/data/fixtures/recorded/selectionTypes/clearShortPaintLeper.yml b/resources/fixtures/recorded/selectionTypes/clearShortPaintLeper.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearShortPaintLeper.yml rename to resources/fixtures/recorded/selectionTypes/clearShortPaintLeper.yml diff --git a/data/fixtures/recorded/selectionTypes/clearTrailing.yml b/resources/fixtures/recorded/selectionTypes/clearTrailing.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearTrailing.yml rename to resources/fixtures/recorded/selectionTypes/clearTrailing.yml diff --git a/data/fixtures/recorded/selectionTypes/clearWord.yml b/resources/fixtures/recorded/selectionTypes/clearWord.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearWord.yml rename to resources/fixtures/recorded/selectionTypes/clearWord.yml diff --git a/data/fixtures/recorded/selectionTypes/clearWord2.yml b/resources/fixtures/recorded/selectionTypes/clearWord2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearWord2.yml rename to resources/fixtures/recorded/selectionTypes/clearWord2.yml diff --git a/data/fixtures/recorded/selectionTypes/clearWord3.yml b/resources/fixtures/recorded/selectionTypes/clearWord3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearWord3.yml rename to resources/fixtures/recorded/selectionTypes/clearWord3.yml diff --git a/data/fixtures/recorded/selectionTypes/clearWord4.yml b/resources/fixtures/recorded/selectionTypes/clearWord4.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearWord4.yml rename to resources/fixtures/recorded/selectionTypes/clearWord4.yml diff --git a/data/fixtures/recorded/selectionTypes/clearWord5.yml b/resources/fixtures/recorded/selectionTypes/clearWord5.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearWord5.yml rename to resources/fixtures/recorded/selectionTypes/clearWord5.yml diff --git a/data/fixtures/recorded/selectionTypes/clearWord6.yml b/resources/fixtures/recorded/selectionTypes/clearWord6.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearWord6.yml rename to resources/fixtures/recorded/selectionTypes/clearWord6.yml diff --git a/data/fixtures/recorded/selectionTypes/clearWord7.yml b/resources/fixtures/recorded/selectionTypes/clearWord7.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/clearWord7.yml rename to resources/fixtures/recorded/selectionTypes/clearWord7.yml diff --git a/data/fixtures/recorded/selectionTypes/drinkEveryArg.yml b/resources/fixtures/recorded/selectionTypes/drinkEveryArg.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/drinkEveryArg.yml rename to resources/fixtures/recorded/selectionTypes/drinkEveryArg.yml diff --git a/data/fixtures/recorded/selectionTypes/drinkJustFine.yml b/resources/fixtures/recorded/selectionTypes/drinkJustFine.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/drinkJustFine.yml rename to resources/fixtures/recorded/selectionTypes/drinkJustFine.yml diff --git a/data/fixtures/recorded/selectionTypes/drinkToken.yml b/resources/fixtures/recorded/selectionTypes/drinkToken.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/drinkToken.yml rename to resources/fixtures/recorded/selectionTypes/drinkToken.yml diff --git a/data/fixtures/recorded/selectionTypes/pourEveryArg.yml b/resources/fixtures/recorded/selectionTypes/pourEveryArg.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/pourEveryArg.yml rename to resources/fixtures/recorded/selectionTypes/pourEveryArg.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryCar.yml b/resources/fixtures/recorded/selectionTypes/takeEveryCar.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryCar.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryCar.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryCarBlock.yml b/resources/fixtures/recorded/selectionTypes/takeEveryCarBlock.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryCarBlock.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryCarBlock.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryFile.yml b/resources/fixtures/recorded/selectionTypes/takeEveryFile.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryFile.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryFile.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryLine.yml b/resources/fixtures/recorded/selectionTypes/takeEveryLine.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryLine.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryLine.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryLine2.yml b/resources/fixtures/recorded/selectionTypes/takeEveryLine2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryLine2.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryLine2.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryLine3.yml b/resources/fixtures/recorded/selectionTypes/takeEveryLine3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryLine3.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryLine3.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryShortPaint.yml b/resources/fixtures/recorded/selectionTypes/takeEveryShortPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryShortPaint.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryShortPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryShortPaint2.yml b/resources/fixtures/recorded/selectionTypes/takeEveryShortPaint2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryShortPaint2.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryShortPaint2.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryShortPaint3.yml b/resources/fixtures/recorded/selectionTypes/takeEveryShortPaint3.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryShortPaint3.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryShortPaint3.yml diff --git a/data/fixtures/recorded/selectionTypes/takeEveryWord.yml b/resources/fixtures/recorded/selectionTypes/takeEveryWord.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeEveryWord.yml rename to resources/fixtures/recorded/selectionTypes/takeEveryWord.yml diff --git a/data/fixtures/recorded/selectionTypes/takeFile.yml b/resources/fixtures/recorded/selectionTypes/takeFile.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeFile.yml rename to resources/fixtures/recorded/selectionTypes/takeFile.yml diff --git a/data/fixtures/recorded/selectionTypes/takeLineVest.yml b/resources/fixtures/recorded/selectionTypes/takeLineVest.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeLineVest.yml rename to resources/fixtures/recorded/selectionTypes/takeLineVest.yml diff --git a/data/fixtures/recorded/selectionTypes/takeShortPaint.yml b/resources/fixtures/recorded/selectionTypes/takeShortPaint.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeShortPaint.yml rename to resources/fixtures/recorded/selectionTypes/takeShortPaint.yml diff --git a/data/fixtures/recorded/selectionTypes/takeSmallPaintAir.yml b/resources/fixtures/recorded/selectionTypes/takeSmallPaintAir.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeSmallPaintAir.yml rename to resources/fixtures/recorded/selectionTypes/takeSmallPaintAir.yml diff --git a/data/fixtures/recorded/selectionTypes/takeSmallPaintFine.yml b/resources/fixtures/recorded/selectionTypes/takeSmallPaintFine.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeSmallPaintFine.yml rename to resources/fixtures/recorded/selectionTypes/takeSmallPaintFine.yml diff --git a/data/fixtures/recorded/selectionTypes/takeSmallPaintFine2.yml b/resources/fixtures/recorded/selectionTypes/takeSmallPaintFine2.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeSmallPaintFine2.yml rename to resources/fixtures/recorded/selectionTypes/takeSmallPaintFine2.yml diff --git a/data/fixtures/recorded/selectionTypes/takeTokenVest.yml b/resources/fixtures/recorded/selectionTypes/takeTokenVest.yml similarity index 100% rename from data/fixtures/recorded/selectionTypes/takeTokenVest.yml rename to resources/fixtures/recorded/selectionTypes/takeTokenVest.yml diff --git a/data/fixtures/recorded/spokenGrammar/bringLineBeforeWhale.yml b/resources/fixtures/recorded/spokenGrammar/bringLineBeforeWhale.yml similarity index 100% rename from data/fixtures/recorded/spokenGrammar/bringLineBeforeWhale.yml rename to resources/fixtures/recorded/spokenGrammar/bringLineBeforeWhale.yml diff --git a/data/fixtures/recorded/subtoken/chuckFinalTwoWords.yml b/resources/fixtures/recorded/subtoken/chuckFinalTwoWords.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckFinalTwoWords.yml rename to resources/fixtures/recorded/subtoken/chuckFinalTwoWords.yml diff --git a/data/fixtures/recorded/subtoken/chuckFirstCharVest.yml b/resources/fixtures/recorded/subtoken/chuckFirstCharVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckFirstCharVest.yml rename to resources/fixtures/recorded/subtoken/chuckFirstCharVest.yml diff --git a/data/fixtures/recorded/subtoken/chuckFirstTwoWords.yml b/resources/fixtures/recorded/subtoken/chuckFirstTwoWords.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckFirstTwoWords.yml rename to resources/fixtures/recorded/subtoken/chuckFirstTwoWords.yml diff --git a/data/fixtures/recorded/subtoken/chuckFirstWordVest.yml b/resources/fixtures/recorded/subtoken/chuckFirstWordVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckFirstWordVest.yml rename to resources/fixtures/recorded/subtoken/chuckFirstWordVest.yml diff --git a/data/fixtures/recorded/subtoken/chuckLastCharVest.yml b/resources/fixtures/recorded/subtoken/chuckLastCharVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckLastCharVest.yml rename to resources/fixtures/recorded/subtoken/chuckLastCharVest.yml diff --git a/data/fixtures/recorded/subtoken/chuckLastWord.yml b/resources/fixtures/recorded/subtoken/chuckLastWord.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckLastWord.yml rename to resources/fixtures/recorded/subtoken/chuckLastWord.yml diff --git a/data/fixtures/recorded/subtoken/chuckLastWordVest.yml b/resources/fixtures/recorded/subtoken/chuckLastWordVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckLastWordVest.yml rename to resources/fixtures/recorded/subtoken/chuckLastWordVest.yml diff --git a/data/fixtures/recorded/subtoken/chuckSecondUntilFourthWord.yml b/resources/fixtures/recorded/subtoken/chuckSecondUntilFourthWord.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckSecondUntilFourthWord.yml rename to resources/fixtures/recorded/subtoken/chuckSecondUntilFourthWord.yml diff --git a/data/fixtures/recorded/subtoken/chuckSecondWordVest.yml b/resources/fixtures/recorded/subtoken/chuckSecondWordVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckSecondWordVest.yml rename to resources/fixtures/recorded/subtoken/chuckSecondWordVest.yml diff --git a/data/fixtures/recorded/subtoken/chuckSixthCharVest.yml b/resources/fixtures/recorded/subtoken/chuckSixthCharVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/chuckSixthCharVest.yml rename to resources/fixtures/recorded/subtoken/chuckSixthCharVest.yml diff --git a/data/fixtures/recorded/subtoken/clearFirstCharVest.yml b/resources/fixtures/recorded/subtoken/clearFirstCharVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearFirstCharVest.yml rename to resources/fixtures/recorded/subtoken/clearFirstCharVest.yml diff --git a/data/fixtures/recorded/subtoken/clearFirstWordVest.yml b/resources/fixtures/recorded/subtoken/clearFirstWordVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearFirstWordVest.yml rename to resources/fixtures/recorded/subtoken/clearFirstWordVest.yml diff --git a/data/fixtures/recorded/subtoken/clearLastCharVest.yml b/resources/fixtures/recorded/subtoken/clearLastCharVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearLastCharVest.yml rename to resources/fixtures/recorded/subtoken/clearLastCharVest.yml diff --git a/data/fixtures/recorded/subtoken/clearLastWordVest.yml b/resources/fixtures/recorded/subtoken/clearLastWordVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearLastWordVest.yml rename to resources/fixtures/recorded/subtoken/clearLastWordVest.yml diff --git a/data/fixtures/recorded/subtoken/clearNextWord.yml b/resources/fixtures/recorded/subtoken/clearNextWord.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearNextWord.yml rename to resources/fixtures/recorded/subtoken/clearNextWord.yml diff --git a/data/fixtures/recorded/subtoken/clearSecondWordVest.yml b/resources/fixtures/recorded/subtoken/clearSecondWordVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearSecondWordVest.yml rename to resources/fixtures/recorded/subtoken/clearSecondWordVest.yml diff --git a/data/fixtures/recorded/subtoken/clearSixthCharVest.yml b/resources/fixtures/recorded/subtoken/clearSixthCharVest.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearSixthCharVest.yml rename to resources/fixtures/recorded/subtoken/clearSixthCharVest.yml diff --git a/data/fixtures/recorded/subtoken/clearSixthNextWord.yml b/resources/fixtures/recorded/subtoken/clearSixthNextWord.yml similarity index 100% rename from data/fixtures/recorded/subtoken/clearSixthNextWord.yml rename to resources/fixtures/recorded/subtoken/clearSixthNextWord.yml diff --git a/data/fixtures/recorded/subtoken/ditchFourthWordLine.yml b/resources/fixtures/recorded/subtoken/ditchFourthWordLine.yml similarity index 100% rename from data/fixtures/recorded/subtoken/ditchFourthWordLine.yml rename to resources/fixtures/recorded/subtoken/ditchFourthWordLine.yml diff --git a/data/fixtures/recorded/subtoken/ditchLastCar.yml b/resources/fixtures/recorded/subtoken/ditchLastCar.yml similarity index 100% rename from data/fixtures/recorded/subtoken/ditchLastCar.yml rename to resources/fixtures/recorded/subtoken/ditchLastCar.yml diff --git a/data/fixtures/recorded/subtoken/ditchLastCar2.yml b/resources/fixtures/recorded/subtoken/ditchLastCar2.yml similarity index 100% rename from data/fixtures/recorded/subtoken/ditchLastCar2.yml rename to resources/fixtures/recorded/subtoken/ditchLastCar2.yml diff --git a/data/fixtures/recorded/subtoken/ditchLastWordLine.yml b/resources/fixtures/recorded/subtoken/ditchLastWordLine.yml similarity index 100% rename from data/fixtures/recorded/subtoken/ditchLastWordLine.yml rename to resources/fixtures/recorded/subtoken/ditchLastWordLine.yml diff --git a/data/fixtures/recorded/subtoken/ditchSecondCar.yml b/resources/fixtures/recorded/subtoken/ditchSecondCar.yml similarity index 100% rename from data/fixtures/recorded/subtoken/ditchSecondCar.yml rename to resources/fixtures/recorded/subtoken/ditchSecondCar.yml diff --git a/data/fixtures/recorded/subtoken/ditchThirdWordLine.yml b/resources/fixtures/recorded/subtoken/ditchThirdWordLine.yml similarity index 100% rename from data/fixtures/recorded/subtoken/ditchThirdWordLine.yml rename to resources/fixtures/recorded/subtoken/ditchThirdWordLine.yml diff --git a/data/fixtures/recorded/subtoken/pourWord.yml b/resources/fixtures/recorded/subtoken/pourWord.yml similarity index 100% rename from data/fixtures/recorded/subtoken/pourWord.yml rename to resources/fixtures/recorded/subtoken/pourWord.yml diff --git a/data/fixtures/recorded/subtoken/pourWordAir.yml b/resources/fixtures/recorded/subtoken/pourWordAir.yml similarity index 100% rename from data/fixtures/recorded/subtoken/pourWordAir.yml rename to resources/fixtures/recorded/subtoken/pourWordAir.yml diff --git a/data/fixtures/recorded/subtoken/takeEveryWordLine.yml b/resources/fixtures/recorded/subtoken/takeEveryWordLine.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeEveryWordLine.yml rename to resources/fixtures/recorded/subtoken/takeEveryWordLine.yml diff --git a/data/fixtures/recorded/subtoken/takeEveryWordLine2.yml b/resources/fixtures/recorded/subtoken/takeEveryWordLine2.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeEveryWordLine2.yml rename to resources/fixtures/recorded/subtoken/takeEveryWordLine2.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstChar.yml b/resources/fixtures/recorded/subtoken/takeFirstChar.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstChar.yml rename to resources/fixtures/recorded/subtoken/takeFirstChar.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstChar2.yml b/resources/fixtures/recorded/subtoken/takeFirstChar2.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstChar2.yml rename to resources/fixtures/recorded/subtoken/takeFirstChar2.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstChar3.yml b/resources/fixtures/recorded/subtoken/takeFirstChar3.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstChar3.yml rename to resources/fixtures/recorded/subtoken/takeFirstChar3.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstChar4.yml b/resources/fixtures/recorded/subtoken/takeFirstChar4.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstChar4.yml rename to resources/fixtures/recorded/subtoken/takeFirstChar4.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstChar5.yml b/resources/fixtures/recorded/subtoken/takeFirstChar5.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstChar5.yml rename to resources/fixtures/recorded/subtoken/takeFirstChar5.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstPastLastCharHarp.yml b/resources/fixtures/recorded/subtoken/takeFirstPastLastCharHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstPastLastCharHarp.yml rename to resources/fixtures/recorded/subtoken/takeFirstPastLastCharHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstPastLastWordHarp.yml b/resources/fixtures/recorded/subtoken/takeFirstPastLastWordHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstPastLastWordHarp.yml rename to resources/fixtures/recorded/subtoken/takeFirstPastLastWordHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstPastSecondWordHarp.yml b/resources/fixtures/recorded/subtoken/takeFirstPastSecondWordHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstPastSecondWordHarp.yml rename to resources/fixtures/recorded/subtoken/takeFirstPastSecondWordHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstThreeCharHarp.yml b/resources/fixtures/recorded/subtoken/takeFirstThreeCharHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstThreeCharHarp.yml rename to resources/fixtures/recorded/subtoken/takeFirstThreeCharHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstTwoWordHarp.yml b/resources/fixtures/recorded/subtoken/takeFirstTwoWordHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstTwoWordHarp.yml rename to resources/fixtures/recorded/subtoken/takeFirstTwoWordHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeFirstWord.yml b/resources/fixtures/recorded/subtoken/takeFirstWord.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeFirstWord.yml rename to resources/fixtures/recorded/subtoken/takeFirstWord.yml diff --git a/data/fixtures/recorded/subtoken/takeLastPastFirstCharHarp.yml b/resources/fixtures/recorded/subtoken/takeLastPastFirstCharHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeLastPastFirstCharHarp.yml rename to resources/fixtures/recorded/subtoken/takeLastPastFirstCharHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeLastPastFirstWordHarp.yml b/resources/fixtures/recorded/subtoken/takeLastPastFirstWordHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeLastPastFirstWordHarp.yml rename to resources/fixtures/recorded/subtoken/takeLastPastFirstWordHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeLastThreeCharHarp.yml b/resources/fixtures/recorded/subtoken/takeLastThreeCharHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeLastThreeCharHarp.yml rename to resources/fixtures/recorded/subtoken/takeLastThreeCharHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeLastTwoWordHarp.yml b/resources/fixtures/recorded/subtoken/takeLastTwoWordHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeLastTwoWordHarp.yml rename to resources/fixtures/recorded/subtoken/takeLastTwoWordHarp.yml diff --git a/data/fixtures/recorded/subtoken/takeSecondCharLookPastSecondCharTrap.yml b/resources/fixtures/recorded/subtoken/takeSecondCharLookPastSecondCharTrap.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeSecondCharLookPastSecondCharTrap.yml rename to resources/fixtures/recorded/subtoken/takeSecondCharLookPastSecondCharTrap.yml diff --git a/data/fixtures/recorded/subtoken/takeSecondWord.yml b/resources/fixtures/recorded/subtoken/takeSecondWord.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeSecondWord.yml rename to resources/fixtures/recorded/subtoken/takeSecondWord.yml diff --git a/data/fixtures/recorded/subtoken/takeThirdPastSecondWordHarp.yml b/resources/fixtures/recorded/subtoken/takeThirdPastSecondWordHarp.yml similarity index 100% rename from data/fixtures/recorded/subtoken/takeThirdPastSecondWordHarp.yml rename to resources/fixtures/recorded/subtoken/takeThirdPastSecondWordHarp.yml diff --git a/data/fixtures/recorded/surroundingPair/changeInside.yml b/resources/fixtures/recorded/surroundingPair/changeInside.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeInside.yml rename to resources/fixtures/recorded/surroundingPair/changeInside.yml diff --git a/data/fixtures/recorded/surroundingPair/changeInsidePair.yml b/resources/fixtures/recorded/surroundingPair/changeInsidePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeInsidePair.yml rename to resources/fixtures/recorded/surroundingPair/changeInsidePair.yml diff --git a/data/fixtures/recorded/surroundingPair/changeNextRound.yml b/resources/fixtures/recorded/surroundingPair/changeNextRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeNextRound.yml rename to resources/fixtures/recorded/surroundingPair/changeNextRound.yml diff --git a/data/fixtures/recorded/surroundingPair/changeNextRound2.yml b/resources/fixtures/recorded/surroundingPair/changeNextRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeNextRound2.yml rename to resources/fixtures/recorded/surroundingPair/changeNextRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/changeNextRound3.yml b/resources/fixtures/recorded/surroundingPair/changeNextRound3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeNextRound3.yml rename to resources/fixtures/recorded/surroundingPair/changeNextRound3.yml diff --git a/data/fixtures/recorded/surroundingPair/changeNextRound4.yml b/resources/fixtures/recorded/surroundingPair/changeNextRound4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeNextRound4.yml rename to resources/fixtures/recorded/surroundingPair/changeNextRound4.yml diff --git a/data/fixtures/recorded/surroundingPair/changePair.yml b/resources/fixtures/recorded/surroundingPair/changePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changePair.yml rename to resources/fixtures/recorded/surroundingPair/changePair.yml diff --git a/data/fixtures/recorded/surroundingPair/changePreviousRound.yml b/resources/fixtures/recorded/surroundingPair/changePreviousRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changePreviousRound.yml rename to resources/fixtures/recorded/surroundingPair/changePreviousRound.yml diff --git a/data/fixtures/recorded/surroundingPair/changePreviousRound2.yml b/resources/fixtures/recorded/surroundingPair/changePreviousRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changePreviousRound2.yml rename to resources/fixtures/recorded/surroundingPair/changePreviousRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/changePreviousRound3.yml b/resources/fixtures/recorded/surroundingPair/changePreviousRound3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changePreviousRound3.yml rename to resources/fixtures/recorded/surroundingPair/changePreviousRound3.yml diff --git a/data/fixtures/recorded/surroundingPair/changeString.yml b/resources/fixtures/recorded/surroundingPair/changeString.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeString.yml rename to resources/fixtures/recorded/surroundingPair/changeString.yml diff --git a/data/fixtures/recorded/surroundingPair/changeTwoRounds.yml b/resources/fixtures/recorded/surroundingPair/changeTwoRounds.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeTwoRounds.yml rename to resources/fixtures/recorded/surroundingPair/changeTwoRounds.yml diff --git a/data/fixtures/recorded/surroundingPair/changeTwoRounds2.yml b/resources/fixtures/recorded/surroundingPair/changeTwoRounds2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeTwoRounds2.yml rename to resources/fixtures/recorded/surroundingPair/changeTwoRounds2.yml diff --git a/data/fixtures/recorded/surroundingPair/changeTwoRounds3.yml b/resources/fixtures/recorded/surroundingPair/changeTwoRounds3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeTwoRounds3.yml rename to resources/fixtures/recorded/surroundingPair/changeTwoRounds3.yml diff --git a/data/fixtures/recorded/surroundingPair/changeTwoRounds4.yml b/resources/fixtures/recorded/surroundingPair/changeTwoRounds4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeTwoRounds4.yml rename to resources/fixtures/recorded/surroundingPair/changeTwoRounds4.yml diff --git a/data/fixtures/recorded/surroundingPair/changeTwoRoundsBackward.yml b/resources/fixtures/recorded/surroundingPair/changeTwoRoundsBackward.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeTwoRoundsBackward.yml rename to resources/fixtures/recorded/surroundingPair/changeTwoRoundsBackward.yml diff --git a/data/fixtures/recorded/surroundingPair/changeTwoRoundsBackward2.yml b/resources/fixtures/recorded/surroundingPair/changeTwoRoundsBackward2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/changeTwoRoundsBackward2.yml rename to resources/fixtures/recorded/surroundingPair/changeTwoRoundsBackward2.yml diff --git a/data/fixtures/recorded/surroundingPair/chuckCore.yml b/resources/fixtures/recorded/surroundingPair/chuckCore.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/chuckCore.yml rename to resources/fixtures/recorded/surroundingPair/chuckCore.yml diff --git a/data/fixtures/recorded/surroundingPair/chuckCore2.yml b/resources/fixtures/recorded/surroundingPair/chuckCore2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/chuckCore2.yml rename to resources/fixtures/recorded/surroundingPair/chuckCore2.yml diff --git a/data/fixtures/recorded/surroundingPair/clearCoreRiskPastHarp.yml b/resources/fixtures/recorded/surroundingPair/clearCoreRiskPastHarp.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/clearCoreRiskPastHarp.yml rename to resources/fixtures/recorded/surroundingPair/clearCoreRiskPastHarp.yml diff --git a/data/fixtures/recorded/surroundingPair/ditchCoreEachPastWhale.yml b/resources/fixtures/recorded/surroundingPair/ditchCoreEachPastWhale.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/ditchCoreEachPastWhale.yml rename to resources/fixtures/recorded/surroundingPair/ditchCoreEachPastWhale.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearBoundsBatt.yml b/resources/fixtures/recorded/surroundingPair/html/clearBoundsBatt.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearBoundsBatt.yml rename to resources/fixtures/recorded/surroundingPair/html/clearBoundsBatt.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearBoundsEach.yml b/resources/fixtures/recorded/surroundingPair/html/clearBoundsEach.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearBoundsEach.yml rename to resources/fixtures/recorded/surroundingPair/html/clearBoundsEach.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearBoundsHarp.yml b/resources/fixtures/recorded/surroundingPair/html/clearBoundsHarp.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearBoundsHarp.yml rename to resources/fixtures/recorded/surroundingPair/html/clearBoundsHarp.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearBoundsOx.yml b/resources/fixtures/recorded/surroundingPair/html/clearBoundsOx.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearBoundsOx.yml rename to resources/fixtures/recorded/surroundingPair/html/clearBoundsOx.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearBoundsRam.yml b/resources/fixtures/recorded/surroundingPair/html/clearBoundsRam.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearBoundsRam.yml rename to resources/fixtures/recorded/surroundingPair/html/clearBoundsRam.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearCurly.yml b/resources/fixtures/recorded/surroundingPair/html/clearCurly.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearCurly.yml rename to resources/fixtures/recorded/surroundingPair/html/clearCurly.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair10.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair10.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair10.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair11.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair11.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair11.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair12.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair12.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair12.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair13.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair13.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair13.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair13.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair14.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair14.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair14.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair15.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair15.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair15.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair15.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair16.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair16.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair16.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair16.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair17.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair17.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair17.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair17.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair2.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair2.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair2.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair3.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair3.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair3.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair4.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair4.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair4.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair5.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair5.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair5.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair6.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair6.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair6.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair7.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair7.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair7.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair8.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair8.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair8.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPair9.yml b/resources/fixtures/recorded/surroundingPair/html/clearPair9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPair9.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPair9.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPairBatt.yml b/resources/fixtures/recorded/surroundingPair/html/clearPairBatt.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPairBatt.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPairBatt.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPairOx.yml b/resources/fixtures/recorded/surroundingPair/html/clearPairOx.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPairOx.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPairOx.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearPairRam.yml b/resources/fixtures/recorded/surroundingPair/html/clearPairRam.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearPairRam.yml rename to resources/fixtures/recorded/surroundingPair/html/clearPairRam.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearRound.yml b/resources/fixtures/recorded/surroundingPair/html/clearRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearRound.yml rename to resources/fixtures/recorded/surroundingPair/html/clearRound.yml diff --git a/data/fixtures/recorded/surroundingPair/html/clearRound2.yml b/resources/fixtures/recorded/surroundingPair/html/clearRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/html/clearRound2.yml rename to resources/fixtures/recorded/surroundingPair/html/clearRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/changePair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/changePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/changePair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/changePair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/clearBound.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearBound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/clearBound.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearBound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearCore2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/clojure/clearPair4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/cpp/changePair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/cpp/changePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/cpp/changePair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/cpp/changePair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/cpp/clearOutside.yml b/resources/fixtures/recorded/surroundingPair/parseTree/cpp/clearOutside.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/cpp/clearOutside.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/cpp/clearOutside.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/cpp/clearRound8.yml b/resources/fixtures/recorded/surroundingPair/parseTree/cpp/clearRound8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/cpp/clearRound8.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/cpp/clearRound8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/java/clearQuad3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/java/clearQuad3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/java/clearQuad3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/java/clearQuad3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/java/clearRound10.yml b/resources/fixtures/recorded/surroundingPair/parseTree/java/clearRound10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/java/clearRound10.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/java/clearRound10.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/java/clearRound11.yml b/resources/fixtures/recorded/surroundingPair/parseTree/java/clearRound11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/java/clearRound11.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/java/clearRound11.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/json/clearPair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/json/clearPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/json/clearPair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/json/clearPair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/json/clearPair2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/json/clearPair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/json/clearPair2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/json/clearPair2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/json/clearRound.yml b/resources/fixtures/recorded/surroundingPair/parseTree/json/clearRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/json/clearRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/json/clearRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/json/clearRound2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/json/clearRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/json/clearRound2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/json/clearRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeInside.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeInside.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeInside.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeInside.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changePair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changePair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changePair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changePair2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changePair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changePair2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changePair2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changePair3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changePair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changePair3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changePair3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeString.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeString.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeString.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeString.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeString3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeString3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeString3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeString3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeString4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeString4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeString4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeString4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeString5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeString5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeString5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeString5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeString6.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeString6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeString6.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeString6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeString7.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeString7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeString7.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeString7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/changeString8.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/changeString8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/changeString8.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/changeString8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/chuckMatching3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/chuckPair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/chuckPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/chuckPair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/chuckPair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/chuckRound.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/chuckRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/chuckRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/chuckRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearCurly.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearCurly.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearCurly.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearCurly.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearCurly3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearCurly3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearCurly3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearCurly3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearInside.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearInside.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearInside.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearInside.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching10.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching10.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching10.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching11.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching11.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching11.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching6.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching6.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching7.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching7.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching8.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearMatching8.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearMatching8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearOutside7.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearOutside7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearOutside7.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearOutside7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearOutside8.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearOutside8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearOutside8.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearOutside8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearPair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearPair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearPair2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearPair2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearPair3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearPair3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearPair4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearPair4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearPair5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearPair5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearPair5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearPairCurly.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearPairCurly.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearPairCurly.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearPairCurly.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearQuad.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearQuad.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearQuad.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearQuad.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearQuad2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearQuad2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearQuad2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearQuad2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearQuad4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearQuad4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearQuad4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearQuad4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearRound.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearRound5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearRound5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearRound6.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearRound6.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearRound7.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearRound7.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearRound7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearSquare.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearSquare.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearSquare.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearSquare.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearSquare2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearSquare2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearSquare2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearSquare2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/python/clearTwin.yml b/resources/fixtures/recorded/surroundingPair/parseTree/python/clearTwin.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/python/clearTwin.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/python/clearTwin.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/ruby/changePair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/ruby/changePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/ruby/changePair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/ruby/changePair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/ruby/changePair2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/ruby/changePair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/ruby/changePair2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/ruby/changePair2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/ruby/changePair3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/ruby/changePair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/ruby/changePair3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/ruby/changePair3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearCurly4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearCurly4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearCurly4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearCurly4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearOutside23.yml b/resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearOutside23.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearOutside23.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearOutside23.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearPair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearPair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearPair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearString5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearString5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/shellscript/clearString5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/shellscript/clearString5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair10.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair10.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair10.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair11.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair11.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair11.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair12.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair12.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair12.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair13.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair13.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair13.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair13.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair14.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair14.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair14.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair15.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair15.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair15.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair15.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair16.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair16.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair16.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair16.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair17.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair17.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair17.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair17.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair18.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair18.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair18.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair18.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair19.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair19.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair19.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair19.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair20.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair20.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair20.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair20.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair21.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair21.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair21.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair21.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair23.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair23.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair23.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair23.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair6.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair6.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair7.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair7.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair8.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair8.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair9.yml b/resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair9.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/tsx/clearPair9.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/changePair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/changePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/changePair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/changePair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/changeRound.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/changeRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/changeRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/changeRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching14.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching14.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching14.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching15.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching15.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching15.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearMatching15.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside10.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside10.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside10.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside11.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside11.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside11.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside12.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside12.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside12.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside13.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside13.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside13.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside13.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside14.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside14.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside14.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside15.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside15.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside15.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside15.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside16.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside16.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside16.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside16.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside17.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside17.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside17.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside17.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside18.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside18.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside18.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside18.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside19.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside19.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside19.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside19.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside20.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside20.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside20.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside20.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside21.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside21.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside21.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside21.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside22.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside22.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside22.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside22.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside6.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside6.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside9.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside9.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearOutside9.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair10.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair10.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair10.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair6.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair6.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair7.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair7.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair8.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair8.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair9.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair9.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearPair9.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearQuad.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearQuad.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearQuad.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearQuad.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearRound4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSkis.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSkis.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSkis.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSkis.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare4.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare4.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare5.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare5.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquare5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareLack.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareLack.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareLack.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareLack.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareRack.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareRack.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareRack.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearSquareRack.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearString.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearString.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearString.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearString.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearString2.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearString2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearString2.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearString2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/clearString3.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearString3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/clearString3.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/clearString3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/takeCore.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/takeCore.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/takeCore.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/takeCore.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTree/typescript/takePairBatt.yml b/resources/fixtures/recorded/surroundingPair/parseTree/typescript/takePairBatt.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTree/typescript/takePairBatt.yml rename to resources/fixtures/recorded/surroundingPair/parseTree/typescript/takePairBatt.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/README.md b/resources/fixtures/recorded/surroundingPair/parseTreeParity/README.md similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/README.md rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/README.md diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/chuckInsideRound.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/chuckInsideRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/chuckInsideRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/chuckInsideRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/chuckPairRound.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/chuckPairRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/chuckPairRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/chuckPairRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/chuckRound2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/chuckRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/chuckRound2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/chuckRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsDouble2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearBoundsRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearCurly2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearCurly2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearCurly2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearCurly2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideGreenDouble.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideGreenDouble.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideGreenDouble.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideGreenDouble.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideLeper.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideLeper.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideLeper.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideLeper.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideRack.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideRack.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideRack.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearOutsideRack.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearRound9.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearRound9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearRound9.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearRound9.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundLeper.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundLeper.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundLeper.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundLeper.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundRepper.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundRepper.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundRepper.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/clearRoundRepper.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeInsideRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside11.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside11.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside11.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside12.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside12.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside12.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside14.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside14.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside14.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside17.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside17.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside17.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside17.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside18.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside18.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside18.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside18.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside20.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside20.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside20.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside20.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside21.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside21.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside21.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside21.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside22.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside22.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside22.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside22.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside23.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside23.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside23.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside23.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside24.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside24.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside24.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside24.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside26.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside26.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside26.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside26.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside3.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside3.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside4.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside4.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside5.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside5.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside6.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside6.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside7.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside7.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside8.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside8.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside9.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside9.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeOutside9.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad3.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad3.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad4.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad4.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad5.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad5.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad6.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad6.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeQuad6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound10.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound10.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound10.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound11.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound11.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound11.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound12.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound12.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound12.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound13.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound13.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound13.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound13.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound14.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound14.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound14.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound15.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound15.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound15.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound15.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound16.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound16.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound16.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound16.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound17.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound17.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound17.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound17.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound18.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound18.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound18.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound18.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound19.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound19.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound19.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound19.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound2.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound2.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound20.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound20.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound20.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound20.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound21.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound21.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound21.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound21.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound22.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound22.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound22.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound22.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound23.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound23.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound23.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound23.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound3.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound3.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound3.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound4.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound4.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound4.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound5.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound5.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound5.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound6.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound6.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound6.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound7.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound7.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound7.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound8.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound8.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound8.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound9.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeRound9.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeRound9.yml diff --git a/data/fixtures/recorded/surroundingPair/parseTreeParity/takeSquare.yml b/resources/fixtures/recorded/surroundingPair/parseTreeParity/takeSquare.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/parseTreeParity/takeSquare.yml rename to resources/fixtures/recorded/surroundingPair/parseTreeParity/takeSquare.yml diff --git a/data/fixtures/recorded/surroundingPair/takeCore.yml b/resources/fixtures/recorded/surroundingPair/takeCore.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/takeCore.yml rename to resources/fixtures/recorded/surroundingPair/takeCore.yml diff --git a/data/fixtures/recorded/surroundingPair/takeCore2.yml b/resources/fixtures/recorded/surroundingPair/takeCore2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/takeCore2.yml rename to resources/fixtures/recorded/surroundingPair/takeCore2.yml diff --git a/data/fixtures/recorded/surroundingPair/takeCoreRiskPastJustHarp.yml b/resources/fixtures/recorded/surroundingPair/takeCoreRiskPastJustHarp.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/takeCoreRiskPastJustHarp.yml rename to resources/fixtures/recorded/surroundingPair/takeCoreRiskPastJustHarp.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/changeNextPair.yml b/resources/fixtures/recorded/surroundingPair/textual/changeNextPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/changeNextPair.yml rename to resources/fixtures/recorded/surroundingPair/textual/changeNextPair.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/changePair.yml b/resources/fixtures/recorded/surroundingPair/textual/changePair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/changePair.yml rename to resources/fixtures/recorded/surroundingPair/textual/changePair.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/changePair2.yml b/resources/fixtures/recorded/surroundingPair/textual/changePair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/changePair2.yml rename to resources/fixtures/recorded/surroundingPair/textual/changePair2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/changePair3.yml b/resources/fixtures/recorded/surroundingPair/textual/changePair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/changePair3.yml rename to resources/fixtures/recorded/surroundingPair/textual/changePair3.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/changePairBackward.yml b/resources/fixtures/recorded/surroundingPair/textual/changePairBackward.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/changePairBackward.yml rename to resources/fixtures/recorded/surroundingPair/textual/changePairBackward.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/changePreviousPair.yml b/resources/fixtures/recorded/surroundingPair/textual/changePreviousPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/changePreviousPair.yml rename to resources/fixtures/recorded/surroundingPair/textual/changePreviousPair.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/changeTwoPairs.yml b/resources/fixtures/recorded/surroundingPair/textual/changeTwoPairs.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/changeTwoPairs.yml rename to resources/fixtures/recorded/surroundingPair/textual/changeTwoPairs.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/chuckInsideRound.yml b/resources/fixtures/recorded/surroundingPair/textual/chuckInsideRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/chuckInsideRound.yml rename to resources/fixtures/recorded/surroundingPair/textual/chuckInsideRound.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/chuckPairHarp.yml b/resources/fixtures/recorded/surroundingPair/textual/chuckPairHarp.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/chuckPairHarp.yml rename to resources/fixtures/recorded/surroundingPair/textual/chuckPairHarp.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/chuckPairRound.yml b/resources/fixtures/recorded/surroundingPair/textual/chuckPairRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/chuckPairRound.yml rename to resources/fixtures/recorded/surroundingPair/textual/chuckPairRound.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/chuckRound2.yml b/resources/fixtures/recorded/surroundingPair/textual/chuckRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/chuckRound2.yml rename to resources/fixtures/recorded/surroundingPair/textual/chuckRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsBatt2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsBatt2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsBatt2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsBatt2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsDouble.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsDouble.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsDouble.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsDouble.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsDouble2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsDouble2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsDouble2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsDouble2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsEach2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsEach2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsEach2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsEach2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsOx2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsOx2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsOx2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsOx2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsRam2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsRam2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsRam2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsRam2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsRound.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsRound.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsRound.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearBoundsRound2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearBoundsRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearBoundsRound2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearBoundsRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearCurly2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearCurly2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearCurly2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearCurly2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearEscapedSquare.yml b/resources/fixtures/recorded/surroundingPair/textual/clearEscapedSquare.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearEscapedSquare.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearEscapedSquare.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearOutsideGreenDouble.yml b/resources/fixtures/recorded/surroundingPair/textual/clearOutsideGreenDouble.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearOutsideGreenDouble.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearOutsideGreenDouble.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearOutsideLeper.yml b/resources/fixtures/recorded/surroundingPair/textual/clearOutsideLeper.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearOutsideLeper.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearOutsideLeper.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearOutsideRack.yml b/resources/fixtures/recorded/surroundingPair/textual/clearOutsideRack.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearOutsideRack.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearOutsideRack.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair10.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair10.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair10.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair11.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair11.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair11.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair12.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair12.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair12.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair13.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair13.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair13.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair13.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair14.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair14.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair14.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair15.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair15.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair15.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair15.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair16.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair16.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair16.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair16.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair3.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair3.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair3.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair4.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair4.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair4.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair5.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair5.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair5.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair6.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair6.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair6.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair7.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair7.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair7.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair8.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair8.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair8.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearPair9.yml b/resources/fixtures/recorded/surroundingPair/textual/clearPair9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearPair9.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearPair9.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearRound.yml b/resources/fixtures/recorded/surroundingPair/textual/clearRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearRound.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearRound.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearRound9.yml b/resources/fixtures/recorded/surroundingPair/textual/clearRound9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearRound9.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearRound9.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearShortPaint.yml b/resources/fixtures/recorded/surroundingPair/textual/clearShortPaint.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearShortPaint.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearShortPaint.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearShortPaint2.yml b/resources/fixtures/recorded/surroundingPair/textual/clearShortPaint2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearShortPaint2.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearShortPaint2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearShortPaint3.yml b/resources/fixtures/recorded/surroundingPair/textual/clearShortPaint3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearShortPaint3.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearShortPaint3.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearShortPaint4.yml b/resources/fixtures/recorded/surroundingPair/textual/clearShortPaint4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearShortPaint4.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearShortPaint4.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearSquare.yml b/resources/fixtures/recorded/surroundingPair/textual/clearSquare.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearSquare.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearSquare.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/clearString4.yml b/resources/fixtures/recorded/surroundingPair/textual/clearString4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/clearString4.yml rename to resources/fixtures/recorded/surroundingPair/textual/clearString4.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/tailTakeEscapedQuad.yml b/resources/fixtures/recorded/surroundingPair/textual/tailTakeEscapedQuad.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/tailTakeEscapedQuad.yml rename to resources/fixtures/recorded/surroundingPair/textual/tailTakeEscapedQuad.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad.yml b/resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad2.yml b/resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad2.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad3.yml b/resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad3.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad3.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad4.yml b/resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad4.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad4.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad5.yml b/resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeEscapedQuad5.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeEscapedQuad5.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeInsideRound.yml b/resources/fixtures/recorded/surroundingPair/textual/takeInsideRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeInsideRound.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeInsideRound.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeInsideRound2.yml b/resources/fixtures/recorded/surroundingPair/textual/takeInsideRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeInsideRound2.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeInsideRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside10.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside10.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside10.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside11.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside11.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside11.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside12.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside12.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside12.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside14.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside14.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside14.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside17.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside17.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside17.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside17.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside18.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside18.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside18.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside18.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside2.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside2.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside20.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside20.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside20.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside20.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside21.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside21.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside21.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside21.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside22.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside22.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside22.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside22.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside23.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside23.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside23.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside23.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside24.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside24.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside24.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside24.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside26.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside26.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside26.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside26.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside27.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside27.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside27.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside27.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside3.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside3.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside3.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside4.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside4.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside4.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside5.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside5.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside5.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside6.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside6.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside6.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside7.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside7.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside7.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside8.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside8.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside8.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutside9.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutside9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutside9.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutside9.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutsideFine.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutsideFine.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutsideFine.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutsideFine.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeOutsideUrge.yml b/resources/fixtures/recorded/surroundingPair/textual/takeOutsideUrge.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeOutsideUrge.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeOutsideUrge.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeQuad.yml b/resources/fixtures/recorded/surroundingPair/textual/takeQuad.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeQuad.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeQuad.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeQuad2.yml b/resources/fixtures/recorded/surroundingPair/textual/takeQuad2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeQuad2.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeQuad2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeQuad3.yml b/resources/fixtures/recorded/surroundingPair/textual/takeQuad3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeQuad3.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeQuad3.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeQuad4.yml b/resources/fixtures/recorded/surroundingPair/textual/takeQuad4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeQuad4.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeQuad4.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeQuad5.yml b/resources/fixtures/recorded/surroundingPair/textual/takeQuad5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeQuad5.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeQuad5.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeQuad6.yml b/resources/fixtures/recorded/surroundingPair/textual/takeQuad6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeQuad6.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeQuad6.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound10.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound10.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound10.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound10.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound11.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound11.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound11.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound11.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound12.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound12.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound12.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound12.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound13.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound13.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound13.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound13.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound14.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound14.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound14.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound14.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound15.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound15.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound15.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound15.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound16.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound16.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound16.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound16.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound17.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound17.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound17.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound17.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound18.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound18.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound18.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound18.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound19.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound19.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound19.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound19.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound2.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound2.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound2.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound2.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound20.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound20.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound20.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound20.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound21.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound21.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound21.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound21.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound22.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound22.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound22.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound22.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound23.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound23.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound23.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound23.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound3.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound3.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound3.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound3.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound4.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound4.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound4.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound4.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound5.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound5.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound5.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound5.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound6.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound6.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound6.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound6.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound7.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound7.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound7.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound7.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound8.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound8.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound8.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound8.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRound9.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRound9.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRound9.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRound9.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRoundLeper.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRoundLeper.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRoundLeper.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRoundLeper.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeRoundRepper.yml b/resources/fixtures/recorded/surroundingPair/textual/takeRoundRepper.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeRoundRepper.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeRoundRepper.yml diff --git a/data/fixtures/recorded/surroundingPair/textual/takeSquare.yml b/resources/fixtures/recorded/surroundingPair/textual/takeSquare.yml similarity index 100% rename from data/fixtures/recorded/surroundingPair/textual/takeSquare.yml rename to resources/fixtures/recorded/surroundingPair/textual/takeSquare.yml diff --git a/data/fixtures/recorded/targets/scopeType/bringSectionMadeAfterThis.yml b/resources/fixtures/recorded/targets/scopeType/bringSectionMadeAfterThis.yml similarity index 100% rename from data/fixtures/recorded/targets/scopeType/bringSectionMadeAfterThis.yml rename to resources/fixtures/recorded/targets/scopeType/bringSectionMadeAfterThis.yml diff --git a/data/fixtures/recorded/targets/scopeType/pourComment.yml b/resources/fixtures/recorded/targets/scopeType/pourComment.yml similarity index 100% rename from data/fixtures/recorded/targets/scopeType/pourComment.yml rename to resources/fixtures/recorded/targets/scopeType/pourComment.yml diff --git a/data/fixtures/recorded/targets/scopeType/pourElm.yml b/resources/fixtures/recorded/targets/scopeType/pourElm.yml similarity index 100% rename from data/fixtures/recorded/targets/scopeType/pourElm.yml rename to resources/fixtures/recorded/targets/scopeType/pourElm.yml diff --git a/data/fixtures/recorded/targets/scopeType/pourEntry.yml b/resources/fixtures/recorded/targets/scopeType/pourEntry.yml similarity index 100% rename from data/fixtures/recorded/targets/scopeType/pourEntry.yml rename to resources/fixtures/recorded/targets/scopeType/pourEntry.yml diff --git a/data/fixtures/recorded/targets/scopeType/pourIfState.yml b/resources/fixtures/recorded/targets/scopeType/pourIfState.yml similarity index 100% rename from data/fixtures/recorded/targets/scopeType/pourIfState.yml rename to resources/fixtures/recorded/targets/scopeType/pourIfState.yml diff --git a/data/fixtures/recorded/targets/scopeType/pourSection.yml b/resources/fixtures/recorded/targets/scopeType/pourSection.yml similarity index 100% rename from data/fixtures/recorded/targets/scopeType/pourSection.yml rename to resources/fixtures/recorded/targets/scopeType/pourSection.yml diff --git a/data/fixtures/recorded/testCaseRecorder/takeEach.yml b/resources/fixtures/recorded/testCaseRecorder/takeEach.yml similarity index 100% rename from data/fixtures/recorded/testCaseRecorder/takeEach.yml rename to resources/fixtures/recorded/testCaseRecorder/takeEach.yml diff --git a/data/fixtures/recorded/testCaseRecorder/takeHarp.yml b/resources/fixtures/recorded/testCaseRecorder/takeHarp.yml similarity index 100% rename from data/fixtures/recorded/testCaseRecorder/takeHarp.yml rename to resources/fixtures/recorded/testCaseRecorder/takeHarp.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/changeSit.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/changeSit.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/changeSit.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/changeSit.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/chuckLineOdd.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/chuckLineOdd.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/chuckLineOdd.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/chuckLineOdd.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/chuckTrap.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/chuckTrap.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/chuckTrap.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/chuckTrap.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/postAir.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/postAir.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/postAir.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/postAir.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/preUrge.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/preUrge.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/preUrge.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/preUrge.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/script.json b/resources/fixtures/recorded/tutorial/tutorial-1-basics/script.json similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/script.json rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/script.json diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/takeBlueSun.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/takeBlueSun.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/takeBlueSun.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/takeBlueSun.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/takeCap.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/takeCap.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/takeCap.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/takeCap.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/takeHarpPastDrum.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/takeHarpPastDrum.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/takeHarpPastDrum.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/takeHarpPastDrum.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/takeLine.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/takeLine.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/takeLine.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/takeLine.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-1-basics/takeNearAndSun.yml b/resources/fixtures/recorded/tutorial/tutorial-1-basics/takeNearAndSun.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-1-basics/takeNearAndSun.yml rename to resources/fixtures/recorded/tutorial/tutorial-1-basics/takeNearAndSun.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringBlueCapToValueRisk.yml b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringBlueCapToValueRisk.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringBlueCapToValueRisk.yml rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringBlueCapToValueRisk.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringStateUrge.yml b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringStateUrge.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringStateUrge.yml rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/bringStateUrge.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/chuckArgueBlueVest.yml b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/chuckArgueBlueVest.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/chuckArgueBlueVest.yml rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/chuckArgueBlueVest.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/cloneStateInk.yml b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/cloneStateInk.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/cloneStateInk.yml rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/cloneStateInk.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/dedentThis.yml b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/dedentThis.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/dedentThis.yml rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/dedentThis.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/pourUrge.yml b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/pourUrge.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/pourUrge.yml rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/pourUrge.yml diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/script.json b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/script.json similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/script.json rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/script.json diff --git a/data/fixtures/recorded/tutorial/tutorial-2-basic-coding/swapStringAirWithWhale.yml b/resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/swapStringAirWithWhale.yml similarity index 100% rename from data/fixtures/recorded/tutorial/tutorial-2-basic-coding/swapStringAirWithWhale.yml rename to resources/fixtures/recorded/tutorial/tutorial-2-basic-coding/swapStringAirWithWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringFine.yml b/resources/fixtures/recorded/updateSelections/bringFine.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFine.yml rename to resources/fixtures/recorded/updateSelections/bringFine.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineAfterJustThis.yml b/resources/fixtures/recorded/updateSelections/bringFineAfterJustThis.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineAfterJustThis.yml rename to resources/fixtures/recorded/updateSelections/bringFineAfterJustThis.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineAfterThirdCarThis.yml b/resources/fixtures/recorded/updateSelections/bringFineAfterThirdCarThis.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineAfterThirdCarThis.yml rename to resources/fixtures/recorded/updateSelections/bringFineAfterThirdCarThis.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineAfterThis2.yml b/resources/fixtures/recorded/updateSelections/bringFineAfterThis2.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineAfterThis2.yml rename to resources/fixtures/recorded/updateSelections/bringFineAfterThis2.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineBeforeThis.yml b/resources/fixtures/recorded/updateSelections/bringFineBeforeThis.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineBeforeThis.yml rename to resources/fixtures/recorded/updateSelections/bringFineBeforeThis.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToFirstCarWhale.yml b/resources/fixtures/recorded/updateSelections/bringFineToFirstCarWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToFirstCarWhale.yml rename to resources/fixtures/recorded/updateSelections/bringFineToFirstCarWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToFirstTwoCar.yml b/resources/fixtures/recorded/updateSelections/bringFineToFirstTwoCar.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToFirstTwoCar.yml rename to resources/fixtures/recorded/updateSelections/bringFineToFirstTwoCar.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToLastCarWhale.yml b/resources/fixtures/recorded/updateSelections/bringFineToLastCarWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToLastCarWhale.yml rename to resources/fixtures/recorded/updateSelections/bringFineToLastCarWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToLastTwoCar.yml b/resources/fixtures/recorded/updateSelections/bringFineToLastTwoCar.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToLastTwoCar.yml rename to resources/fixtures/recorded/updateSelections/bringFineToLastTwoCar.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToThirdCarWhale.yml b/resources/fixtures/recorded/updateSelections/bringFineToThirdCarWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToThirdCarWhale.yml rename to resources/fixtures/recorded/updateSelections/bringFineToThirdCarWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToWhale.yml b/resources/fixtures/recorded/updateSelections/bringFineToWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToWhale.yml rename to resources/fixtures/recorded/updateSelections/bringFineToWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToWhale2.yml b/resources/fixtures/recorded/updateSelections/bringFineToWhale2.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToWhale2.yml rename to resources/fixtures/recorded/updateSelections/bringFineToWhale2.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToWhale3.yml b/resources/fixtures/recorded/updateSelections/bringFineToWhale3.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToWhale3.yml rename to resources/fixtures/recorded/updateSelections/bringFineToWhale3.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToWhale4.yml b/resources/fixtures/recorded/updateSelections/bringFineToWhale4.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToWhale4.yml rename to resources/fixtures/recorded/updateSelections/bringFineToWhale4.yml diff --git a/data/fixtures/recorded/updateSelections/bringFineToWhale5.yml b/resources/fixtures/recorded/updateSelections/bringFineToWhale5.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringFineToWhale5.yml rename to resources/fixtures/recorded/updateSelections/bringFineToWhale5.yml diff --git a/data/fixtures/recorded/updateSelections/bringHarpToEndOfWhale.yml b/resources/fixtures/recorded/updateSelections/bringHarpToEndOfWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringHarpToEndOfWhale.yml rename to resources/fixtures/recorded/updateSelections/bringHarpToEndOfWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringHarpToFourthCarWhalePastSecondCarHarp.yml b/resources/fixtures/recorded/updateSelections/bringHarpToFourthCarWhalePastSecondCarHarp.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringHarpToFourthCarWhalePastSecondCarHarp.yml rename to resources/fixtures/recorded/updateSelections/bringHarpToFourthCarWhalePastSecondCarHarp.yml diff --git a/data/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarHarp.yml b/resources/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarHarp.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarHarp.yml rename to resources/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarHarp.yml diff --git a/data/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarWhale.yml b/resources/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarWhale.yml rename to resources/fixtures/recorded/updateSelections/bringHarpToSecondCarFinePastThirdCarWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringHarpToStartOfWhale.yml b/resources/fixtures/recorded/updateSelections/bringHarpToStartOfWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringHarpToStartOfWhale.yml rename to resources/fixtures/recorded/updateSelections/bringHarpToStartOfWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringWhale.yml b/resources/fixtures/recorded/updateSelections/bringWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringWhale.yml rename to resources/fixtures/recorded/updateSelections/bringWhale.yml diff --git a/data/fixtures/recorded/updateSelections/bringWhaleAfterFine.yml b/resources/fixtures/recorded/updateSelections/bringWhaleAfterFine.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringWhaleAfterFine.yml rename to resources/fixtures/recorded/updateSelections/bringWhaleAfterFine.yml diff --git a/data/fixtures/recorded/updateSelections/bringWhaleAfterThis.yml b/resources/fixtures/recorded/updateSelections/bringWhaleAfterThis.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringWhaleAfterThis.yml rename to resources/fixtures/recorded/updateSelections/bringWhaleAfterThis.yml diff --git a/data/fixtures/recorded/updateSelections/bringWhaleAfterThis2.yml b/resources/fixtures/recorded/updateSelections/bringWhaleAfterThis2.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringWhaleAfterThis2.yml rename to resources/fixtures/recorded/updateSelections/bringWhaleAfterThis2.yml diff --git a/data/fixtures/recorded/updateSelections/bringWhaleBeforeJustThis.yml b/resources/fixtures/recorded/updateSelections/bringWhaleBeforeJustThis.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringWhaleBeforeJustThis.yml rename to resources/fixtures/recorded/updateSelections/bringWhaleBeforeJustThis.yml diff --git a/data/fixtures/recorded/updateSelections/bringWhaleToEndOfFine.yml b/resources/fixtures/recorded/updateSelections/bringWhaleToEndOfFine.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringWhaleToEndOfFine.yml rename to resources/fixtures/recorded/updateSelections/bringWhaleToEndOfFine.yml diff --git a/data/fixtures/recorded/updateSelections/bringWhaleToFine.yml b/resources/fixtures/recorded/updateSelections/bringWhaleToFine.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/bringWhaleToFine.yml rename to resources/fixtures/recorded/updateSelections/bringWhaleToFine.yml diff --git a/data/fixtures/recorded/updateSelections/chuckFirstCarWhale.yml b/resources/fixtures/recorded/updateSelections/chuckFirstCarWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/chuckFirstCarWhale.yml rename to resources/fixtures/recorded/updateSelections/chuckFirstCarWhale.yml diff --git a/data/fixtures/recorded/updateSelections/chuckFirstPastSecondCar.yml b/resources/fixtures/recorded/updateSelections/chuckFirstPastSecondCar.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/chuckFirstPastSecondCar.yml rename to resources/fixtures/recorded/updateSelections/chuckFirstPastSecondCar.yml diff --git a/data/fixtures/recorded/updateSelections/chuckFourthPastFifthCar.yml b/resources/fixtures/recorded/updateSelections/chuckFourthPastFifthCar.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/chuckFourthPastFifthCar.yml rename to resources/fixtures/recorded/updateSelections/chuckFourthPastFifthCar.yml diff --git a/data/fixtures/recorded/updateSelections/chuckLastCarWhale.yml b/resources/fixtures/recorded/updateSelections/chuckLastCarWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/chuckLastCarWhale.yml rename to resources/fixtures/recorded/updateSelections/chuckLastCarWhale.yml diff --git a/data/fixtures/recorded/updateSelections/chuckSecondCarFinePastThirdCarWhale.yml b/resources/fixtures/recorded/updateSelections/chuckSecondCarFinePastThirdCarWhale.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/chuckSecondCarFinePastThirdCarWhale.yml rename to resources/fixtures/recorded/updateSelections/chuckSecondCarFinePastThirdCarWhale.yml diff --git a/data/fixtures/recorded/updateSelections/chuckSecondPastThirdCar.yml b/resources/fixtures/recorded/updateSelections/chuckSecondPastThirdCar.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/chuckSecondPastThirdCar.yml rename to resources/fixtures/recorded/updateSelections/chuckSecondPastThirdCar.yml diff --git a/data/fixtures/recorded/updateSelections/chuckThirdCarWhalePastSecondCarHarp.yml b/resources/fixtures/recorded/updateSelections/chuckThirdCarWhalePastSecondCarHarp.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/chuckThirdCarWhalePastSecondCarHarp.yml rename to resources/fixtures/recorded/updateSelections/chuckThirdCarWhalePastSecondCarHarp.yml diff --git a/data/fixtures/recorded/updateSelections/commentTrap.yml b/resources/fixtures/recorded/updateSelections/commentTrap.yml similarity index 100% rename from data/fixtures/recorded/updateSelections/commentTrap.yml rename to resources/fixtures/recorded/updateSelections/commentTrap.yml diff --git a/data/scopeSupportFacetInfos.md b/resources/fixtures/scopeSupportFacetInfos.md similarity index 100% rename from data/scopeSupportFacetInfos.md rename to resources/fixtures/scopeSupportFacetInfos.md diff --git a/data/fixtures/scopes/c/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/c/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/c/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/c/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/c/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/c/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/c/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/c/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/c/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/c/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/c/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/c/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/c/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/c/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/c/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/c/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/c/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/c/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/c/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/c/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/c/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/c/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/c/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/c/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/c/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/c/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/c/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/c/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/c/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/c/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/c/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/c/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/c/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/c/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/c/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/c/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/c/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/c/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/c/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/c/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/c/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/c/branch/branch.if.else.scope b/resources/fixtures/scopes/c/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.if.else.scope rename to resources/fixtures/scopes/c/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/c/branch/branch.if.iteration.scope b/resources/fixtures/scopes/c/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/c/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/c/branch/branch.if.scope b/resources/fixtures/scopes/c/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.if.scope rename to resources/fixtures/scopes/c/branch/branch.if.scope diff --git a/data/fixtures/scopes/c/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/c/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/c/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/c/branch/branch.switchCase.scope b/resources/fixtures/scopes/c/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.switchCase.scope rename to resources/fixtures/scopes/c/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/c/branch/branch.switchCase2.scope b/resources/fixtures/scopes/c/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/c/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/c/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/c/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/c/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/c/branch/branch.ternary.scope b/resources/fixtures/scopes/c/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/c/branch/branch.ternary.scope rename to resources/fixtures/scopes/c/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/c/class/class.iteration.document.scope b/resources/fixtures/scopes/c/class/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/c/class/class.iteration.document.scope rename to resources/fixtures/scopes/c/class/class.iteration.document.scope diff --git a/data/fixtures/scopes/c/class/class.scope b/resources/fixtures/scopes/c/class/class.scope similarity index 100% rename from data/fixtures/scopes/c/class/class.scope rename to resources/fixtures/scopes/c/class/class.scope diff --git a/data/fixtures/scopes/c/class/class2.scope b/resources/fixtures/scopes/c/class/class2.scope similarity index 100% rename from data/fixtures/scopes/c/class/class2.scope rename to resources/fixtures/scopes/c/class/class2.scope diff --git a/data/fixtures/scopes/c/class/class3.scope b/resources/fixtures/scopes/c/class/class3.scope similarity index 100% rename from data/fixtures/scopes/c/class/class3.scope rename to resources/fixtures/scopes/c/class/class3.scope diff --git a/data/fixtures/scopes/c/class/class4.scope b/resources/fixtures/scopes/c/class/class4.scope similarity index 100% rename from data/fixtures/scopes/c/class/class4.scope rename to resources/fixtures/scopes/c/class/class4.scope diff --git a/data/fixtures/scopes/c/class/class5.scope b/resources/fixtures/scopes/c/class/class5.scope similarity index 100% rename from data/fixtures/scopes/c/class/class5.scope rename to resources/fixtures/scopes/c/class/class5.scope diff --git a/data/fixtures/scopes/c/class/class6.scope b/resources/fixtures/scopes/c/class/class6.scope similarity index 100% rename from data/fixtures/scopes/c/class/class6.scope rename to resources/fixtures/scopes/c/class/class6.scope diff --git a/data/fixtures/scopes/c/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/c/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/c/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/c/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/c/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/c/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/c/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/c/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/c/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/c/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/c/comment.block.scope b/resources/fixtures/scopes/c/comment.block.scope similarity index 100% rename from data/fixtures/scopes/c/comment.block.scope rename to resources/fixtures/scopes/c/comment.block.scope diff --git a/data/fixtures/scopes/c/comment.line.scope b/resources/fixtures/scopes/c/comment.line.scope similarity index 100% rename from data/fixtures/scopes/c/comment.line.scope rename to resources/fixtures/scopes/c/comment.line.scope diff --git a/data/fixtures/scopes/c/condition/condition.doWhile.scope b/resources/fixtures/scopes/c/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/c/condition/condition.doWhile.scope rename to resources/fixtures/scopes/c/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/c/condition/condition.for.scope b/resources/fixtures/scopes/c/condition/condition.for.scope similarity index 100% rename from data/fixtures/scopes/c/condition/condition.for.scope rename to resources/fixtures/scopes/c/condition/condition.for.scope diff --git a/data/fixtures/scopes/c/condition/condition.if.scope b/resources/fixtures/scopes/c/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/c/condition/condition.if.scope rename to resources/fixtures/scopes/c/condition/condition.if.scope diff --git a/data/fixtures/scopes/c/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/c/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/c/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/c/condition/condition.switchCase.scope b/resources/fixtures/scopes/c/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/c/condition/condition.switchCase.scope rename to resources/fixtures/scopes/c/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/c/condition/condition.ternary.scope b/resources/fixtures/scopes/c/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/c/condition/condition.ternary.scope rename to resources/fixtures/scopes/c/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/c/condition/condition.while.scope b/resources/fixtures/scopes/c/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/c/condition/condition.while.scope rename to resources/fixtures/scopes/c/condition/condition.while.scope diff --git a/data/fixtures/scopes/c/disqualifyDelimiter.scope b/resources/fixtures/scopes/c/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/c/disqualifyDelimiter.scope rename to resources/fixtures/scopes/c/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/c/functionCall.chain.scope b/resources/fixtures/scopes/c/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/c/functionCall.chain.scope rename to resources/fixtures/scopes/c/functionCall.chain.scope diff --git a/data/fixtures/scopes/c/functionCall.method.scope b/resources/fixtures/scopes/c/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/c/functionCall.method.scope rename to resources/fixtures/scopes/c/functionCall.method.scope diff --git a/data/fixtures/scopes/c/functionCall.scope b/resources/fixtures/scopes/c/functionCall.scope similarity index 100% rename from data/fixtures/scopes/c/functionCall.scope rename to resources/fixtures/scopes/c/functionCall.scope diff --git a/data/fixtures/scopes/c/functionCallee.chain.scope b/resources/fixtures/scopes/c/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/c/functionCallee.chain.scope rename to resources/fixtures/scopes/c/functionCallee.chain.scope diff --git a/data/fixtures/scopes/c/functionCallee.method.scope b/resources/fixtures/scopes/c/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/c/functionCallee.method.scope rename to resources/fixtures/scopes/c/functionCallee.method.scope diff --git a/data/fixtures/scopes/c/functionCallee.scope b/resources/fixtures/scopes/c/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/c/functionCallee.scope rename to resources/fixtures/scopes/c/functionCallee.scope diff --git a/data/fixtures/scopes/c/ifStatement.scope b/resources/fixtures/scopes/c/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/c/ifStatement.scope rename to resources/fixtures/scopes/c/ifStatement.scope diff --git a/data/fixtures/scopes/c/interior/interior.class.scope b/resources/fixtures/scopes/c/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.class.scope rename to resources/fixtures/scopes/c/interior/interior.class.scope diff --git a/data/fixtures/scopes/c/interior/interior.class2.scope b/resources/fixtures/scopes/c/interior/interior.class2.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.class2.scope rename to resources/fixtures/scopes/c/interior/interior.class2.scope diff --git a/data/fixtures/scopes/c/interior/interior.class3.scope b/resources/fixtures/scopes/c/interior/interior.class3.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.class3.scope rename to resources/fixtures/scopes/c/interior/interior.class3.scope diff --git a/data/fixtures/scopes/c/interior/interior.class4.scope b/resources/fixtures/scopes/c/interior/interior.class4.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.class4.scope rename to resources/fixtures/scopes/c/interior/interior.class4.scope diff --git a/data/fixtures/scopes/c/interior/interior.doWhile.scope b/resources/fixtures/scopes/c/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.doWhile.scope rename to resources/fixtures/scopes/c/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/c/interior/interior.enum.scope b/resources/fixtures/scopes/c/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.enum.scope rename to resources/fixtures/scopes/c/interior/interior.enum.scope diff --git a/data/fixtures/scopes/c/interior/interior.enum2.scope b/resources/fixtures/scopes/c/interior/interior.enum2.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.enum2.scope rename to resources/fixtures/scopes/c/interior/interior.enum2.scope diff --git a/data/fixtures/scopes/c/interior/interior.for.scope b/resources/fixtures/scopes/c/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.for.scope rename to resources/fixtures/scopes/c/interior/interior.for.scope diff --git a/data/fixtures/scopes/c/interior/interior.function.scope b/resources/fixtures/scopes/c/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.function.scope rename to resources/fixtures/scopes/c/interior/interior.function.scope diff --git a/data/fixtures/scopes/c/interior/interior.function2.scope b/resources/fixtures/scopes/c/interior/interior.function2.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.function2.scope rename to resources/fixtures/scopes/c/interior/interior.function2.scope diff --git a/data/fixtures/scopes/c/interior/interior.if.scope b/resources/fixtures/scopes/c/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.if.scope rename to resources/fixtures/scopes/c/interior/interior.if.scope diff --git a/data/fixtures/scopes/c/interior/interior.switch.scope b/resources/fixtures/scopes/c/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.switch.scope rename to resources/fixtures/scopes/c/interior/interior.switch.scope diff --git a/data/fixtures/scopes/c/interior/interior.switchCase.scope b/resources/fixtures/scopes/c/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.switchCase.scope rename to resources/fixtures/scopes/c/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/c/interior/interior.switchCase2.scope b/resources/fixtures/scopes/c/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/c/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/c/interior/interior.while.scope b/resources/fixtures/scopes/c/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/c/interior/interior.while.scope rename to resources/fixtures/scopes/c/interior/interior.while.scope diff --git a/data/fixtures/scopes/c/list.scope b/resources/fixtures/scopes/c/list.scope similarity index 100% rename from data/fixtures/scopes/c/list.scope rename to resources/fixtures/scopes/c/list.scope diff --git a/data/fixtures/scopes/c/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/c/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/c/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/c/name/name.argument.formal.iteration2.scope b/resources/fixtures/scopes/c/name/name.argument.formal.iteration2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.argument.formal.iteration2.scope rename to resources/fixtures/scopes/c/name/name.argument.formal.iteration2.scope diff --git a/data/fixtures/scopes/c/name/name.argument.formal.scope b/resources/fixtures/scopes/c/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.argument.formal.scope rename to resources/fixtures/scopes/c/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/c/name/name.argument.formal2.scope b/resources/fixtures/scopes/c/name/name.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.argument.formal2.scope rename to resources/fixtures/scopes/c/name/name.argument.formal2.scope diff --git a/data/fixtures/scopes/c/name/name.assignment.compound.scope b/resources/fixtures/scopes/c/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.assignment.compound.scope rename to resources/fixtures/scopes/c/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/c/name/name.assignment.scope b/resources/fixtures/scopes/c/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.assignment.scope rename to resources/fixtures/scopes/c/name/name.assignment.scope diff --git a/data/fixtures/scopes/c/name/name.assignment2.scope b/resources/fixtures/scopes/c/name/name.assignment2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.assignment2.scope rename to resources/fixtures/scopes/c/name/name.assignment2.scope diff --git a/data/fixtures/scopes/c/name/name.class.scope b/resources/fixtures/scopes/c/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.class.scope rename to resources/fixtures/scopes/c/name/name.class.scope diff --git a/data/fixtures/scopes/c/name/name.class2.scope b/resources/fixtures/scopes/c/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.class2.scope rename to resources/fixtures/scopes/c/name/name.class2.scope diff --git a/data/fixtures/scopes/c/name/name.class3.scope b/resources/fixtures/scopes/c/name/name.class3.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.class3.scope rename to resources/fixtures/scopes/c/name/name.class3.scope diff --git a/data/fixtures/scopes/c/name/name.class4.scope b/resources/fixtures/scopes/c/name/name.class4.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.class4.scope rename to resources/fixtures/scopes/c/name/name.class4.scope diff --git a/data/fixtures/scopes/c/name/name.class5.scope b/resources/fixtures/scopes/c/name/name.class5.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.class5.scope rename to resources/fixtures/scopes/c/name/name.class5.scope diff --git a/data/fixtures/scopes/c/name/name.class6.scope b/resources/fixtures/scopes/c/name/name.class6.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.class6.scope rename to resources/fixtures/scopes/c/name/name.class6.scope diff --git a/data/fixtures/scopes/c/name/name.constant.scope b/resources/fixtures/scopes/c/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.constant.scope rename to resources/fixtures/scopes/c/name/name.constant.scope diff --git a/data/fixtures/scopes/c/name/name.enum.scope b/resources/fixtures/scopes/c/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.enum.scope rename to resources/fixtures/scopes/c/name/name.enum.scope diff --git a/data/fixtures/scopes/c/name/name.enum2.scope b/resources/fixtures/scopes/c/name/name.enum2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.enum2.scope rename to resources/fixtures/scopes/c/name/name.enum2.scope diff --git a/data/fixtures/scopes/c/name/name.field.class.scope b/resources/fixtures/scopes/c/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.field.class.scope rename to resources/fixtures/scopes/c/name/name.field.class.scope diff --git a/data/fixtures/scopes/c/name/name.field.class2.scope b/resources/fixtures/scopes/c/name/name.field.class2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.field.class2.scope rename to resources/fixtures/scopes/c/name/name.field.class2.scope diff --git a/data/fixtures/scopes/c/name/name.field.enum.scope b/resources/fixtures/scopes/c/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.field.enum.scope rename to resources/fixtures/scopes/c/name/name.field.enum.scope diff --git a/data/fixtures/scopes/c/name/name.function.scope b/resources/fixtures/scopes/c/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.function.scope rename to resources/fixtures/scopes/c/name/name.function.scope diff --git a/data/fixtures/scopes/c/name/name.function2.scope b/resources/fixtures/scopes/c/name/name.function2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.function2.scope rename to resources/fixtures/scopes/c/name/name.function2.scope diff --git a/data/fixtures/scopes/c/name/name.function3.scope b/resources/fixtures/scopes/c/name/name.function3.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.function3.scope rename to resources/fixtures/scopes/c/name/name.function3.scope diff --git a/data/fixtures/scopes/c/name/name.function4.scope b/resources/fixtures/scopes/c/name/name.function4.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.function4.scope rename to resources/fixtures/scopes/c/name/name.function4.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.block2.scope b/resources/fixtures/scopes/c/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.block2.scope rename to resources/fixtures/scopes/c/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.block3.scope b/resources/fixtures/scopes/c/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.block3.scope rename to resources/fixtures/scopes/c/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.block4.scope b/resources/fixtures/scopes/c/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.block4.scope rename to resources/fixtures/scopes/c/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.class.scope b/resources/fixtures/scopes/c/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.class.scope rename to resources/fixtures/scopes/c/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.class2.scope b/resources/fixtures/scopes/c/name/name.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.class2.scope rename to resources/fixtures/scopes/c/name/name.iteration.class2.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.class3.scope b/resources/fixtures/scopes/c/name/name.iteration.class3.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.class3.scope rename to resources/fixtures/scopes/c/name/name.iteration.class3.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.class4.scope b/resources/fixtures/scopes/c/name/name.iteration.class4.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.class4.scope rename to resources/fixtures/scopes/c/name/name.iteration.class4.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.document.scope b/resources/fixtures/scopes/c/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.document.scope rename to resources/fixtures/scopes/c/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/c/name/name.iteration.enum.scope b/resources/fixtures/scopes/c/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.iteration.enum.scope rename to resources/fixtures/scopes/c/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/c/name/name.typeAlias.scope b/resources/fixtures/scopes/c/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.typeAlias.scope rename to resources/fixtures/scopes/c/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/c/name/name.variable.initialized.scope b/resources/fixtures/scopes/c/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.variable.initialized.scope rename to resources/fixtures/scopes/c/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/c/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/c/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/c/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/c/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/c/namedFunction/namedFunction.iteration.document.scope b/resources/fixtures/scopes/c/namedFunction/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/c/namedFunction/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/c/namedFunction/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/c/namedFunction/namedFunction.scope b/resources/fixtures/scopes/c/namedFunction/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/c/namedFunction/namedFunction.scope rename to resources/fixtures/scopes/c/namedFunction/namedFunction.scope diff --git a/data/fixtures/scopes/c/namedFunction/namedFunction2.scope b/resources/fixtures/scopes/c/namedFunction/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/c/namedFunction/namedFunction2.scope rename to resources/fixtures/scopes/c/namedFunction/namedFunction2.scope diff --git a/data/fixtures/scopes/c/namedFunction/namedFunction3.scope b/resources/fixtures/scopes/c/namedFunction/namedFunction3.scope similarity index 100% rename from data/fixtures/scopes/c/namedFunction/namedFunction3.scope rename to resources/fixtures/scopes/c/namedFunction/namedFunction3.scope diff --git a/data/fixtures/scopes/c/namedFunction/namedFunction4.scope b/resources/fixtures/scopes/c/namedFunction/namedFunction4.scope similarity index 100% rename from data/fixtures/scopes/c/namedFunction/namedFunction4.scope rename to resources/fixtures/scopes/c/namedFunction/namedFunction4.scope diff --git a/data/fixtures/scopes/c/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/c/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/c/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/c/statement/statement.assignment.scope b/resources/fixtures/scopes/c/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.assignment.scope rename to resources/fixtures/scopes/c/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/c/statement/statement.break.scope b/resources/fixtures/scopes/c/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.break.scope rename to resources/fixtures/scopes/c/statement/statement.break.scope diff --git a/data/fixtures/scopes/c/statement/statement.class.scope b/resources/fixtures/scopes/c/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.class.scope rename to resources/fixtures/scopes/c/statement/statement.class.scope diff --git a/data/fixtures/scopes/c/statement/statement.class2.scope b/resources/fixtures/scopes/c/statement/statement.class2.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.class2.scope rename to resources/fixtures/scopes/c/statement/statement.class2.scope diff --git a/data/fixtures/scopes/c/statement/statement.class3.scope b/resources/fixtures/scopes/c/statement/statement.class3.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.class3.scope rename to resources/fixtures/scopes/c/statement/statement.class3.scope diff --git a/data/fixtures/scopes/c/statement/statement.class4.scope b/resources/fixtures/scopes/c/statement/statement.class4.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.class4.scope rename to resources/fixtures/scopes/c/statement/statement.class4.scope diff --git a/data/fixtures/scopes/c/statement/statement.constant.scope b/resources/fixtures/scopes/c/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.constant.scope rename to resources/fixtures/scopes/c/statement/statement.constant.scope diff --git a/data/fixtures/scopes/c/statement/statement.continue.scope b/resources/fixtures/scopes/c/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.continue.scope rename to resources/fixtures/scopes/c/statement/statement.continue.scope diff --git a/data/fixtures/scopes/c/statement/statement.doWhile.scope b/resources/fixtures/scopes/c/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.doWhile.scope rename to resources/fixtures/scopes/c/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/c/statement/statement.enum.scope b/resources/fixtures/scopes/c/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.enum.scope rename to resources/fixtures/scopes/c/statement/statement.enum.scope diff --git a/data/fixtures/scopes/c/statement/statement.field.class.scope b/resources/fixtures/scopes/c/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.field.class.scope rename to resources/fixtures/scopes/c/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/c/statement/statement.field.class2.scope b/resources/fixtures/scopes/c/statement/statement.field.class2.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.field.class2.scope rename to resources/fixtures/scopes/c/statement/statement.field.class2.scope diff --git a/data/fixtures/scopes/c/statement/statement.for.scope b/resources/fixtures/scopes/c/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.for.scope rename to resources/fixtures/scopes/c/statement/statement.for.scope diff --git a/data/fixtures/scopes/c/statement/statement.function.scope b/resources/fixtures/scopes/c/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.function.scope rename to resources/fixtures/scopes/c/statement/statement.function.scope diff --git a/data/fixtures/scopes/c/statement/statement.function2.scope b/resources/fixtures/scopes/c/statement/statement.function2.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.function2.scope rename to resources/fixtures/scopes/c/statement/statement.function2.scope diff --git a/data/fixtures/scopes/c/statement/statement.function3.scope b/resources/fixtures/scopes/c/statement/statement.function3.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.function3.scope rename to resources/fixtures/scopes/c/statement/statement.function3.scope diff --git a/data/fixtures/scopes/c/statement/statement.function4.scope b/resources/fixtures/scopes/c/statement/statement.function4.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.function4.scope rename to resources/fixtures/scopes/c/statement/statement.function4.scope diff --git a/data/fixtures/scopes/c/statement/statement.functionCall.scope b/resources/fixtures/scopes/c/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.functionCall.scope rename to resources/fixtures/scopes/c/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/c/statement/statement.if.scope b/resources/fixtures/scopes/c/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.if.scope rename to resources/fixtures/scopes/c/statement/statement.if.scope diff --git a/data/fixtures/scopes/c/statement/statement.import.scope b/resources/fixtures/scopes/c/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.import.scope rename to resources/fixtures/scopes/c/statement/statement.import.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/c/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/c/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/c/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.class.scope b/resources/fixtures/scopes/c/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.class2.scope b/resources/fixtures/scopes/c/statement/statement.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.class2.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.class2.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.class3.scope b/resources/fixtures/scopes/c/statement/statement.iteration.class3.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.class3.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.class3.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.class4.scope b/resources/fixtures/scopes/c/statement/statement.iteration.class4.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.class4.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.class4.scope diff --git a/data/fixtures/scopes/c/statement/statement.iteration.document.scope b/resources/fixtures/scopes/c/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/c/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/c/statement/statement.return.scope b/resources/fixtures/scopes/c/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.return.scope rename to resources/fixtures/scopes/c/statement/statement.return.scope diff --git a/data/fixtures/scopes/c/statement/statement.switch.scope b/resources/fixtures/scopes/c/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.switch.scope rename to resources/fixtures/scopes/c/statement/statement.switch.scope diff --git a/data/fixtures/scopes/c/statement/statement.typeAlias.scope b/resources/fixtures/scopes/c/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/c/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/c/statement/statement.update.scope b/resources/fixtures/scopes/c/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.update.scope rename to resources/fixtures/scopes/c/statement/statement.update.scope diff --git a/data/fixtures/scopes/c/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/c/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/c/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/c/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/c/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/c/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/c/statement/statement.while.scope b/resources/fixtures/scopes/c/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/c/statement/statement.while.scope rename to resources/fixtures/scopes/c/statement/statement.while.scope diff --git a/data/fixtures/scopes/c/string.singleLine.scope b/resources/fixtures/scopes/c/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/string.singleLine.scope rename to resources/fixtures/scopes/c/string.singleLine.scope diff --git a/data/fixtures/scopes/c/textFragment.comment.block.scope b/resources/fixtures/scopes/c/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/c/textFragment.comment.block.scope rename to resources/fixtures/scopes/c/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/c/textFragment.comment.line.scope b/resources/fixtures/scopes/c/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/c/textFragment.comment.line.scope rename to resources/fixtures/scopes/c/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/c/textFragment.string.singleLine.scope b/resources/fixtures/scopes/c/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/c/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/c/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/c/type/type.alias.scope b/resources/fixtures/scopes/c/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.alias.scope rename to resources/fixtures/scopes/c/type/type.alias.scope diff --git a/data/fixtures/scopes/c/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/c/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/c/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/c/type/type.argument.formal.scope b/resources/fixtures/scopes/c/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.argument.formal.scope rename to resources/fixtures/scopes/c/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/c/type/type.cast.scope b/resources/fixtures/scopes/c/type/type.cast.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.cast.scope rename to resources/fixtures/scopes/c/type/type.cast.scope diff --git a/data/fixtures/scopes/c/type/type.class.scope b/resources/fixtures/scopes/c/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.class.scope rename to resources/fixtures/scopes/c/type/type.class.scope diff --git a/data/fixtures/scopes/c/type/type.class2.scope b/resources/fixtures/scopes/c/type/type.class2.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.class2.scope rename to resources/fixtures/scopes/c/type/type.class2.scope diff --git a/data/fixtures/scopes/c/type/type.class3.scope b/resources/fixtures/scopes/c/type/type.class3.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.class3.scope rename to resources/fixtures/scopes/c/type/type.class3.scope diff --git a/data/fixtures/scopes/c/type/type.class4.scope b/resources/fixtures/scopes/c/type/type.class4.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.class4.scope rename to resources/fixtures/scopes/c/type/type.class4.scope diff --git a/data/fixtures/scopes/c/type/type.constant.scope b/resources/fixtures/scopes/c/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.constant.scope rename to resources/fixtures/scopes/c/type/type.constant.scope diff --git a/data/fixtures/scopes/c/type/type.enum.scope b/resources/fixtures/scopes/c/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.enum.scope rename to resources/fixtures/scopes/c/type/type.enum.scope diff --git a/data/fixtures/scopes/c/type/type.enum2.scope b/resources/fixtures/scopes/c/type/type.enum2.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.enum2.scope rename to resources/fixtures/scopes/c/type/type.enum2.scope diff --git a/data/fixtures/scopes/c/type/type.field.class.scope b/resources/fixtures/scopes/c/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.field.class.scope rename to resources/fixtures/scopes/c/type/type.field.class.scope diff --git a/data/fixtures/scopes/c/type/type.field.class2.scope b/resources/fixtures/scopes/c/type/type.field.class2.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.field.class2.scope rename to resources/fixtures/scopes/c/type/type.field.class2.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.block2.scope b/resources/fixtures/scopes/c/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.block2.scope rename to resources/fixtures/scopes/c/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.block3.scope b/resources/fixtures/scopes/c/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.block3.scope rename to resources/fixtures/scopes/c/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.block4.scope b/resources/fixtures/scopes/c/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.block4.scope rename to resources/fixtures/scopes/c/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.class.scope b/resources/fixtures/scopes/c/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.class.scope rename to resources/fixtures/scopes/c/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.class2.scope b/resources/fixtures/scopes/c/type/type.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.class2.scope rename to resources/fixtures/scopes/c/type/type.iteration.class2.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.class3.scope b/resources/fixtures/scopes/c/type/type.iteration.class3.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.class3.scope rename to resources/fixtures/scopes/c/type/type.iteration.class3.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.class4.scope b/resources/fixtures/scopes/c/type/type.iteration.class4.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.class4.scope rename to resources/fixtures/scopes/c/type/type.iteration.class4.scope diff --git a/data/fixtures/scopes/c/type/type.iteration.document.scope b/resources/fixtures/scopes/c/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.iteration.document.scope rename to resources/fixtures/scopes/c/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/c/type/type.return.scope b/resources/fixtures/scopes/c/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.return.scope rename to resources/fixtures/scopes/c/type/type.return.scope diff --git a/data/fixtures/scopes/c/type/type.variable.initialized.scope b/resources/fixtures/scopes/c/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.variable.initialized.scope rename to resources/fixtures/scopes/c/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/c/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/c/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/c/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/c/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/c/value/value.assignment.compound.scope b/resources/fixtures/scopes/c/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.assignment.compound.scope rename to resources/fixtures/scopes/c/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/c/value/value.assignment.scope b/resources/fixtures/scopes/c/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.assignment.scope rename to resources/fixtures/scopes/c/value/value.assignment.scope diff --git a/data/fixtures/scopes/c/value/value.assignment2.scope b/resources/fixtures/scopes/c/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.assignment2.scope rename to resources/fixtures/scopes/c/value/value.assignment2.scope diff --git a/data/fixtures/scopes/c/value/value.constant.scope b/resources/fixtures/scopes/c/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.constant.scope rename to resources/fixtures/scopes/c/value/value.constant.scope diff --git a/data/fixtures/scopes/c/value/value.field.enum.scope b/resources/fixtures/scopes/c/value/value.field.enum.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.field.enum.scope rename to resources/fixtures/scopes/c/value/value.field.enum.scope diff --git a/data/fixtures/scopes/c/value/value.iteration.block2.scope b/resources/fixtures/scopes/c/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.iteration.block2.scope rename to resources/fixtures/scopes/c/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/c/value/value.iteration.block3.scope b/resources/fixtures/scopes/c/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.iteration.block3.scope rename to resources/fixtures/scopes/c/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/c/value/value.iteration.block4.scope b/resources/fixtures/scopes/c/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.iteration.block4.scope rename to resources/fixtures/scopes/c/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/c/value/value.iteration.class.scope b/resources/fixtures/scopes/c/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.iteration.class.scope rename to resources/fixtures/scopes/c/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/c/value/value.iteration.class2.scope b/resources/fixtures/scopes/c/value/value.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.iteration.class2.scope rename to resources/fixtures/scopes/c/value/value.iteration.class2.scope diff --git a/data/fixtures/scopes/c/value/value.iteration.document.scope b/resources/fixtures/scopes/c/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.iteration.document.scope rename to resources/fixtures/scopes/c/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/c/value/value.iteration.enum.scope b/resources/fixtures/scopes/c/value/value.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.iteration.enum.scope rename to resources/fixtures/scopes/c/value/value.iteration.enum.scope diff --git a/data/fixtures/scopes/c/value/value.return.scope b/resources/fixtures/scopes/c/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.return.scope rename to resources/fixtures/scopes/c/value/value.return.scope diff --git a/data/fixtures/scopes/c/value/value.switch.scope b/resources/fixtures/scopes/c/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.switch.scope rename to resources/fixtures/scopes/c/value/value.switch.scope diff --git a/data/fixtures/scopes/c/value/value.typeAlias.scope b/resources/fixtures/scopes/c/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.typeAlias.scope rename to resources/fixtures/scopes/c/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/c/value/value.variable.scope b/resources/fixtures/scopes/c/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/c/value/value.variable.scope rename to resources/fixtures/scopes/c/value/value.variable.scope diff --git a/data/fixtures/scopes/clojure/anonymousFunction.scope b/resources/fixtures/scopes/clojure/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/clojure/anonymousFunction.scope rename to resources/fixtures/scopes/clojure/anonymousFunction.scope diff --git a/data/fixtures/scopes/clojure/anonymousFunction2.scope b/resources/fixtures/scopes/clojure/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/clojure/anonymousFunction2.scope rename to resources/fixtures/scopes/clojure/anonymousFunction2.scope diff --git a/data/fixtures/scopes/clojure/argument.actual.iteration.scope b/resources/fixtures/scopes/clojure/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/clojure/argument.actual.iteration.scope rename to resources/fixtures/scopes/clojure/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/clojure/argument.actual.multiLine.scope b/resources/fixtures/scopes/clojure/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/argument.actual.multiLine.scope rename to resources/fixtures/scopes/clojure/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/clojure/argument.actual.singleLine.scope b/resources/fixtures/scopes/clojure/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/argument.actual.singleLine.scope rename to resources/fixtures/scopes/clojure/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/clojure/argumentList.actual.empty.scope b/resources/fixtures/scopes/clojure/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/clojure/argumentList.actual.empty.scope rename to resources/fixtures/scopes/clojure/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/clojure/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/clojure/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/clojure/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/clojure/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/clojure/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/clojure/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/clojure/comment.line.scope b/resources/fixtures/scopes/clojure/comment.line.scope similarity index 100% rename from data/fixtures/scopes/clojure/comment.line.scope rename to resources/fixtures/scopes/clojure/comment.line.scope diff --git a/data/fixtures/scopes/clojure/condition.if.scope b/resources/fixtures/scopes/clojure/condition.if.scope similarity index 100% rename from data/fixtures/scopes/clojure/condition.if.scope rename to resources/fixtures/scopes/clojure/condition.if.scope diff --git a/data/fixtures/scopes/clojure/disqualifyDelimiter.scope b/resources/fixtures/scopes/clojure/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/clojure/disqualifyDelimiter.scope rename to resources/fixtures/scopes/clojure/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/clojure/functionCall.scope b/resources/fixtures/scopes/clojure/functionCall.scope similarity index 100% rename from data/fixtures/scopes/clojure/functionCall.scope rename to resources/fixtures/scopes/clojure/functionCall.scope diff --git a/data/fixtures/scopes/clojure/functionCallee.scope b/resources/fixtures/scopes/clojure/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/clojure/functionCallee.scope rename to resources/fixtures/scopes/clojure/functionCallee.scope diff --git a/data/fixtures/scopes/clojure/ifStatement.scope b/resources/fixtures/scopes/clojure/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/clojure/ifStatement.scope rename to resources/fixtures/scopes/clojure/ifStatement.scope diff --git a/data/fixtures/scopes/clojure/list.scope b/resources/fixtures/scopes/clojure/list.scope similarity index 100% rename from data/fixtures/scopes/clojure/list.scope rename to resources/fixtures/scopes/clojure/list.scope diff --git a/data/fixtures/scopes/clojure/list2.scope b/resources/fixtures/scopes/clojure/list2.scope similarity index 100% rename from data/fixtures/scopes/clojure/list2.scope rename to resources/fixtures/scopes/clojure/list2.scope diff --git a/data/fixtures/scopes/clojure/list3.scope b/resources/fixtures/scopes/clojure/list3.scope similarity index 100% rename from data/fixtures/scopes/clojure/list3.scope rename to resources/fixtures/scopes/clojure/list3.scope diff --git a/data/fixtures/scopes/clojure/map.scope b/resources/fixtures/scopes/clojure/map.scope similarity index 100% rename from data/fixtures/scopes/clojure/map.scope rename to resources/fixtures/scopes/clojure/map.scope diff --git a/data/fixtures/scopes/clojure/map2.scope b/resources/fixtures/scopes/clojure/map2.scope similarity index 100% rename from data/fixtures/scopes/clojure/map2.scope rename to resources/fixtures/scopes/clojure/map2.scope diff --git a/data/fixtures/scopes/clojure/name.function.scope b/resources/fixtures/scopes/clojure/name.function.scope similarity index 100% rename from data/fixtures/scopes/clojure/name.function.scope rename to resources/fixtures/scopes/clojure/name.function.scope diff --git a/data/fixtures/scopes/clojure/namedFunction.iteration.document.scope b/resources/fixtures/scopes/clojure/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/clojure/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/clojure/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/clojure/namedFunction.scope b/resources/fixtures/scopes/clojure/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/clojure/namedFunction.scope rename to resources/fixtures/scopes/clojure/namedFunction.scope diff --git a/data/fixtures/scopes/clojure/string.multiLine.scope b/resources/fixtures/scopes/clojure/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/string.multiLine.scope rename to resources/fixtures/scopes/clojure/string.multiLine.scope diff --git a/data/fixtures/scopes/clojure/string.singleLine.scope b/resources/fixtures/scopes/clojure/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/string.singleLine.scope rename to resources/fixtures/scopes/clojure/string.singleLine.scope diff --git a/data/fixtures/scopes/clojure/textFragment.comment.line.scope b/resources/fixtures/scopes/clojure/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/clojure/textFragment.comment.line.scope rename to resources/fixtures/scopes/clojure/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/clojure/textFragment.string.multiLine.scope b/resources/fixtures/scopes/clojure/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/clojure/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/clojure/textFragment.string.singleLine.scope b/resources/fixtures/scopes/clojure/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/clojure/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/clojure/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/cpp/anonymousFunction.scope b/resources/fixtures/scopes/cpp/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/cpp/anonymousFunction.scope rename to resources/fixtures/scopes/cpp/anonymousFunction.scope diff --git a/data/fixtures/scopes/cpp/anonymousFunction2.scope b/resources/fixtures/scopes/cpp/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/cpp/anonymousFunction2.scope rename to resources/fixtures/scopes/cpp/anonymousFunction2.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/cpp/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/cpp/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/cpp/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/cpp/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.catch.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/cpp/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/cpp/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/cpp/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/cpp/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/cpp/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/cpp/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/cpp/attribute.scope b/resources/fixtures/scopes/cpp/attribute.scope similarity index 100% rename from data/fixtures/scopes/cpp/attribute.scope rename to resources/fixtures/scopes/cpp/attribute.scope diff --git a/data/fixtures/scopes/cpp/branch.try.iteration.scope b/resources/fixtures/scopes/cpp/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/branch.try.iteration.scope rename to resources/fixtures/scopes/cpp/branch.try.iteration.scope diff --git a/data/fixtures/scopes/cpp/branch.try.scope b/resources/fixtures/scopes/cpp/branch.try.scope similarity index 100% rename from data/fixtures/scopes/cpp/branch.try.scope rename to resources/fixtures/scopes/cpp/branch.try.scope diff --git a/data/fixtures/scopes/cpp/class.scope b/resources/fixtures/scopes/cpp/class.scope similarity index 100% rename from data/fixtures/scopes/cpp/class.scope rename to resources/fixtures/scopes/cpp/class.scope diff --git a/data/fixtures/scopes/cpp/disqualifyDelimiter.scope b/resources/fixtures/scopes/cpp/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/cpp/disqualifyDelimiter.scope rename to resources/fixtures/scopes/cpp/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/cpp/functionCall.constructor.scope b/resources/fixtures/scopes/cpp/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/functionCall.constructor.scope rename to resources/fixtures/scopes/cpp/functionCall.constructor.scope diff --git a/data/fixtures/scopes/cpp/functionCall.generic.scope b/resources/fixtures/scopes/cpp/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/cpp/functionCall.generic.scope rename to resources/fixtures/scopes/cpp/functionCall.generic.scope diff --git a/data/fixtures/scopes/cpp/functionCall.method.scope b/resources/fixtures/scopes/cpp/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/functionCall.method.scope rename to resources/fixtures/scopes/cpp/functionCall.method.scope diff --git a/data/fixtures/scopes/cpp/functionCallee.constructor.scope b/resources/fixtures/scopes/cpp/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/functionCallee.constructor.scope rename to resources/fixtures/scopes/cpp/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/cpp/functionCallee.generic.scope b/resources/fixtures/scopes/cpp/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/cpp/functionCallee.generic.scope rename to resources/fixtures/scopes/cpp/functionCallee.generic.scope diff --git a/data/fixtures/scopes/cpp/functionCallee.method.scope b/resources/fixtures/scopes/cpp/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/functionCallee.method.scope rename to resources/fixtures/scopes/cpp/functionCallee.method.scope diff --git a/data/fixtures/scopes/cpp/index.json b/resources/fixtures/scopes/cpp/index.json similarity index 100% rename from data/fixtures/scopes/cpp/index.json rename to resources/fixtures/scopes/cpp/index.json diff --git a/data/fixtures/scopes/cpp/interior/interior.class.scope b/resources/fixtures/scopes/cpp/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.class.scope rename to resources/fixtures/scopes/cpp/interior/interior.class.scope diff --git a/data/fixtures/scopes/cpp/interior/interior.constructor.scope b/resources/fixtures/scopes/cpp/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.constructor.scope rename to resources/fixtures/scopes/cpp/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/cpp/interior/interior.enum.scope b/resources/fixtures/scopes/cpp/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.enum.scope rename to resources/fixtures/scopes/cpp/interior/interior.enum.scope diff --git a/data/fixtures/scopes/cpp/interior/interior.foreach.scope b/resources/fixtures/scopes/cpp/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.foreach.scope rename to resources/fixtures/scopes/cpp/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/cpp/interior/interior.lambda.scope b/resources/fixtures/scopes/cpp/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.lambda.scope rename to resources/fixtures/scopes/cpp/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/cpp/interior/interior.method.scope b/resources/fixtures/scopes/cpp/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.method.scope rename to resources/fixtures/scopes/cpp/interior/interior.method.scope diff --git a/data/fixtures/scopes/cpp/interior/interior.namespace.scope b/resources/fixtures/scopes/cpp/interior/interior.namespace.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.namespace.scope rename to resources/fixtures/scopes/cpp/interior/interior.namespace.scope diff --git a/data/fixtures/scopes/cpp/interior/interior.try.scope b/resources/fixtures/scopes/cpp/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/cpp/interior/interior.try.scope rename to resources/fixtures/scopes/cpp/interior/interior.try.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.catch.scope b/resources/fixtures/scopes/cpp/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.catch.scope rename to resources/fixtures/scopes/cpp/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.method.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/cpp/name/name.argument.formal.scope b/resources/fixtures/scopes/cpp/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.argument.formal.scope rename to resources/fixtures/scopes/cpp/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/cpp/name/name.class.scope b/resources/fixtures/scopes/cpp/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.class.scope rename to resources/fixtures/scopes/cpp/name/name.class.scope diff --git a/data/fixtures/scopes/cpp/name/name.class2.scope b/resources/fixtures/scopes/cpp/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.class2.scope rename to resources/fixtures/scopes/cpp/name/name.class2.scope diff --git a/data/fixtures/scopes/cpp/name/name.constructor.scope b/resources/fixtures/scopes/cpp/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.constructor.scope rename to resources/fixtures/scopes/cpp/name/name.constructor.scope diff --git a/data/fixtures/scopes/cpp/name/name.constructor2.scope b/resources/fixtures/scopes/cpp/name/name.constructor2.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.constructor2.scope rename to resources/fixtures/scopes/cpp/name/name.constructor2.scope diff --git a/data/fixtures/scopes/cpp/name/name.enum.scope b/resources/fixtures/scopes/cpp/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.enum.scope rename to resources/fixtures/scopes/cpp/name/name.enum.scope diff --git a/data/fixtures/scopes/cpp/name/name.field.class.scope b/resources/fixtures/scopes/cpp/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.field.class.scope rename to resources/fixtures/scopes/cpp/name/name.field.class.scope diff --git a/data/fixtures/scopes/cpp/name/name.field.enum.scope b/resources/fixtures/scopes/cpp/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.field.enum.scope rename to resources/fixtures/scopes/cpp/name/name.field.enum.scope diff --git a/data/fixtures/scopes/cpp/name/name.foreach.scope b/resources/fixtures/scopes/cpp/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.foreach.scope rename to resources/fixtures/scopes/cpp/name/name.foreach.scope diff --git a/data/fixtures/scopes/cpp/name/name.iteration.class.scope b/resources/fixtures/scopes/cpp/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.iteration.class.scope rename to resources/fixtures/scopes/cpp/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/cpp/name/name.iteration.enum.scope b/resources/fixtures/scopes/cpp/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.iteration.enum.scope rename to resources/fixtures/scopes/cpp/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/cpp/name/name.method.scope b/resources/fixtures/scopes/cpp/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.method.scope rename to resources/fixtures/scopes/cpp/name/name.method.scope diff --git a/data/fixtures/scopes/cpp/name/name.namespace.scope b/resources/fixtures/scopes/cpp/name/name.namespace.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.namespace.scope rename to resources/fixtures/scopes/cpp/name/name.namespace.scope diff --git a/data/fixtures/scopes/cpp/name/name.typeAlias.scope b/resources/fixtures/scopes/cpp/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/cpp/name/name.typeAlias.scope rename to resources/fixtures/scopes/cpp/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/cpp/namedFunction.constructor.scope b/resources/fixtures/scopes/cpp/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/namedFunction.constructor.scope rename to resources/fixtures/scopes/cpp/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/cpp/namedFunction.constructor2.scope b/resources/fixtures/scopes/cpp/namedFunction.constructor2.scope similarity index 100% rename from data/fixtures/scopes/cpp/namedFunction.constructor2.scope rename to resources/fixtures/scopes/cpp/namedFunction.constructor2.scope diff --git a/data/fixtures/scopes/cpp/namedFunction.iteration.class.scope b/resources/fixtures/scopes/cpp/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/cpp/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/cpp/namedFunction.method.scope b/resources/fixtures/scopes/cpp/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/namedFunction.method.scope rename to resources/fixtures/scopes/cpp/namedFunction.method.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.class.scope b/resources/fixtures/scopes/cpp/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.class.scope rename to resources/fixtures/scopes/cpp/statement/statement.class.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.constructor.scope b/resources/fixtures/scopes/cpp/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.constructor.scope rename to resources/fixtures/scopes/cpp/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.constructor2.scope b/resources/fixtures/scopes/cpp/statement/statement.constructor2.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.constructor2.scope rename to resources/fixtures/scopes/cpp/statement/statement.constructor2.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.enum.scope b/resources/fixtures/scopes/cpp/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.enum.scope rename to resources/fixtures/scopes/cpp/statement/statement.enum.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.foreach.scope b/resources/fixtures/scopes/cpp/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.foreach.scope rename to resources/fixtures/scopes/cpp/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.iteration.class.scope b/resources/fixtures/scopes/cpp/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/cpp/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.method.scope b/resources/fixtures/scopes/cpp/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.method.scope rename to resources/fixtures/scopes/cpp/statement/statement.method.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.namespace.scope b/resources/fixtures/scopes/cpp/statement/statement.namespace.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.namespace.scope rename to resources/fixtures/scopes/cpp/statement/statement.namespace.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.throw.scope b/resources/fixtures/scopes/cpp/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.throw.scope rename to resources/fixtures/scopes/cpp/statement/statement.throw.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.try.scope b/resources/fixtures/scopes/cpp/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.try.scope rename to resources/fixtures/scopes/cpp/statement/statement.try.scope diff --git a/data/fixtures/scopes/cpp/statement/statement.typeAlias.scope b/resources/fixtures/scopes/cpp/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/cpp/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/cpp/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/cpp/type/type.alias.scope b/resources/fixtures/scopes/cpp/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.alias.scope rename to resources/fixtures/scopes/cpp/type/type.alias.scope diff --git a/data/fixtures/scopes/cpp/type/type.argument.catch.scope b/resources/fixtures/scopes/cpp/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.argument.catch.scope rename to resources/fixtures/scopes/cpp/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/cpp/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/cpp/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/cpp/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/cpp/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/cpp/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/cpp/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/cpp/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/cpp/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/cpp/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/cpp/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/cpp/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/cpp/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/cpp/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/cpp/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/cpp/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/cpp/type/type.argument.formal.method.scope b/resources/fixtures/scopes/cpp/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/cpp/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/cpp/type/type.class.scope b/resources/fixtures/scopes/cpp/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.class.scope rename to resources/fixtures/scopes/cpp/type/type.class.scope diff --git a/data/fixtures/scopes/cpp/type/type.enum.scope b/resources/fixtures/scopes/cpp/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.enum.scope rename to resources/fixtures/scopes/cpp/type/type.enum.scope diff --git a/data/fixtures/scopes/cpp/type/type.field.class.scope b/resources/fixtures/scopes/cpp/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.field.class.scope rename to resources/fixtures/scopes/cpp/type/type.field.class.scope diff --git a/data/fixtures/scopes/cpp/type/type.foreach.scope b/resources/fixtures/scopes/cpp/type/type.foreach.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.foreach.scope rename to resources/fixtures/scopes/cpp/type/type.foreach.scope diff --git a/data/fixtures/scopes/cpp/type/type.iteration.class.scope b/resources/fixtures/scopes/cpp/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.iteration.class.scope rename to resources/fixtures/scopes/cpp/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/cpp/type/type.return.lambda.scope b/resources/fixtures/scopes/cpp/type/type.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.return.lambda.scope rename to resources/fixtures/scopes/cpp/type/type.return.lambda.scope diff --git a/data/fixtures/scopes/cpp/type/type.return.method.scope b/resources/fixtures/scopes/cpp/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.return.method.scope rename to resources/fixtures/scopes/cpp/type/type.return.method.scope diff --git a/data/fixtures/scopes/cpp/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/cpp/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/cpp/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/cpp/type/type.typeArgument.scope b/resources/fixtures/scopes/cpp/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/cpp/type/type.typeArgument.scope rename to resources/fixtures/scopes/cpp/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.method.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/cpp/value/value.argument.formal.scope b/resources/fixtures/scopes/cpp/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.argument.formal.scope rename to resources/fixtures/scopes/cpp/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/cpp/value/value.assignment.compound.scope b/resources/fixtures/scopes/cpp/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.assignment.compound.scope rename to resources/fixtures/scopes/cpp/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/cpp/value/value.field.class.scope b/resources/fixtures/scopes/cpp/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.field.class.scope rename to resources/fixtures/scopes/cpp/value/value.field.class.scope diff --git a/data/fixtures/scopes/cpp/value/value.field.enum.scope b/resources/fixtures/scopes/cpp/value/value.field.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.field.enum.scope rename to resources/fixtures/scopes/cpp/value/value.field.enum.scope diff --git a/data/fixtures/scopes/cpp/value/value.foreach.scope b/resources/fixtures/scopes/cpp/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.foreach.scope rename to resources/fixtures/scopes/cpp/value/value.foreach.scope diff --git a/data/fixtures/scopes/cpp/value/value.iteration.class.scope b/resources/fixtures/scopes/cpp/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.iteration.class.scope rename to resources/fixtures/scopes/cpp/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/cpp/value/value.iteration.enum.scope b/resources/fixtures/scopes/cpp/value/value.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.iteration.enum.scope rename to resources/fixtures/scopes/cpp/value/value.iteration.enum.scope diff --git a/data/fixtures/scopes/cpp/value/value.throw.scope b/resources/fixtures/scopes/cpp/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.throw.scope rename to resources/fixtures/scopes/cpp/value/value.throw.scope diff --git a/data/fixtures/scopes/cpp/value/value.typeAlias.scope b/resources/fixtures/scopes/cpp/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/cpp/value/value.typeAlias.scope rename to resources/fixtures/scopes/cpp/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/csharp/anonymousFunction.scope b/resources/fixtures/scopes/csharp/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/csharp/anonymousFunction.scope rename to resources/fixtures/scopes/csharp/anonymousFunction.scope diff --git a/data/fixtures/scopes/csharp/anonymousFunction2.scope b/resources/fixtures/scopes/csharp/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/csharp/anonymousFunction2.scope rename to resources/fixtures/scopes/csharp/anonymousFunction2.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/csharp/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.catch.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/csharp/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/csharp/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/csharp/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/csharp/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/csharp/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/csharp/attribute.scope b/resources/fixtures/scopes/csharp/attribute.scope similarity index 100% rename from data/fixtures/scopes/csharp/attribute.scope rename to resources/fixtures/scopes/csharp/attribute.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/csharp/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/csharp/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.if.else.scope b/resources/fixtures/scopes/csharp/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.if.else.scope rename to resources/fixtures/scopes/csharp/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.if.iteration.scope b/resources/fixtures/scopes/csharp/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/csharp/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.if.scope b/resources/fixtures/scopes/csharp/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.if.scope rename to resources/fixtures/scopes/csharp/branch/branch.if.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/csharp/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/csharp/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.switchCase.scope b/resources/fixtures/scopes/csharp/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.switchCase.scope rename to resources/fixtures/scopes/csharp/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.switchCase2.scope b/resources/fixtures/scopes/csharp/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/csharp/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/csharp/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/csharp/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.ternary.scope b/resources/fixtures/scopes/csharp/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.ternary.scope rename to resources/fixtures/scopes/csharp/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.try.iteration.scope b/resources/fixtures/scopes/csharp/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/csharp/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/csharp/branch/branch.try.scope b/resources/fixtures/scopes/csharp/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/csharp/branch/branch.try.scope rename to resources/fixtures/scopes/csharp/branch/branch.try.scope diff --git a/data/fixtures/scopes/csharp/class.iteration.class.scope b/resources/fixtures/scopes/csharp/class.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/class.iteration.class.scope rename to resources/fixtures/scopes/csharp/class.iteration.class.scope diff --git a/data/fixtures/scopes/csharp/class.iteration.document.scope b/resources/fixtures/scopes/csharp/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/csharp/class.iteration.document.scope rename to resources/fixtures/scopes/csharp/class.iteration.document.scope diff --git a/data/fixtures/scopes/csharp/class.scope b/resources/fixtures/scopes/csharp/class.scope similarity index 100% rename from data/fixtures/scopes/csharp/class.scope rename to resources/fixtures/scopes/csharp/class.scope diff --git a/data/fixtures/scopes/csharp/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/csharp/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/csharp/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/csharp/collectionItem.unenclosed.iteration2.scope b/resources/fixtures/scopes/csharp/collectionItem.unenclosed.iteration2.scope similarity index 100% rename from data/fixtures/scopes/csharp/collectionItem.unenclosed.iteration2.scope rename to resources/fixtures/scopes/csharp/collectionItem.unenclosed.iteration2.scope diff --git a/data/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine2.scope b/resources/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine2.scope rename to resources/fixtures/scopes/csharp/collectionItem.unenclosed.multiLine2.scope diff --git a/data/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine2.scope b/resources/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine2.scope rename to resources/fixtures/scopes/csharp/collectionItem.unenclosed.singleLine2.scope diff --git a/data/fixtures/scopes/csharp/comment.block.scope b/resources/fixtures/scopes/csharp/comment.block.scope similarity index 100% rename from data/fixtures/scopes/csharp/comment.block.scope rename to resources/fixtures/scopes/csharp/comment.block.scope diff --git a/data/fixtures/scopes/csharp/comment.line.scope b/resources/fixtures/scopes/csharp/comment.line.scope similarity index 100% rename from data/fixtures/scopes/csharp/comment.line.scope rename to resources/fixtures/scopes/csharp/comment.line.scope diff --git a/data/fixtures/scopes/csharp/condition/condition.doWhile.scope b/resources/fixtures/scopes/csharp/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/csharp/condition/condition.doWhile.scope rename to resources/fixtures/scopes/csharp/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/csharp/condition/condition.for.scope b/resources/fixtures/scopes/csharp/condition/condition.for.scope similarity index 100% rename from data/fixtures/scopes/csharp/condition/condition.for.scope rename to resources/fixtures/scopes/csharp/condition/condition.for.scope diff --git a/data/fixtures/scopes/csharp/condition/condition.if.scope b/resources/fixtures/scopes/csharp/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/csharp/condition/condition.if.scope rename to resources/fixtures/scopes/csharp/condition/condition.if.scope diff --git a/data/fixtures/scopes/csharp/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/csharp/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/csharp/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/csharp/condition/condition.switchCase.scope b/resources/fixtures/scopes/csharp/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/csharp/condition/condition.switchCase.scope rename to resources/fixtures/scopes/csharp/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/csharp/condition/condition.ternary.scope b/resources/fixtures/scopes/csharp/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/csharp/condition/condition.ternary.scope rename to resources/fixtures/scopes/csharp/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/csharp/condition/condition.while.scope b/resources/fixtures/scopes/csharp/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/csharp/condition/condition.while.scope rename to resources/fixtures/scopes/csharp/condition/condition.while.scope diff --git a/data/fixtures/scopes/csharp/disqualifyDelimiter.scope b/resources/fixtures/scopes/csharp/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/csharp/disqualifyDelimiter.scope rename to resources/fixtures/scopes/csharp/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/csharp/functionCall.chain.scope b/resources/fixtures/scopes/csharp/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCall.chain.scope rename to resources/fixtures/scopes/csharp/functionCall.chain.scope diff --git a/data/fixtures/scopes/csharp/functionCall.constructor.scope b/resources/fixtures/scopes/csharp/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCall.constructor.scope rename to resources/fixtures/scopes/csharp/functionCall.constructor.scope diff --git a/data/fixtures/scopes/csharp/functionCall.generic.scope b/resources/fixtures/scopes/csharp/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCall.generic.scope rename to resources/fixtures/scopes/csharp/functionCall.generic.scope diff --git a/data/fixtures/scopes/csharp/functionCall.method.scope b/resources/fixtures/scopes/csharp/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCall.method.scope rename to resources/fixtures/scopes/csharp/functionCall.method.scope diff --git a/data/fixtures/scopes/csharp/functionCall.scope b/resources/fixtures/scopes/csharp/functionCall.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCall.scope rename to resources/fixtures/scopes/csharp/functionCall.scope diff --git a/data/fixtures/scopes/csharp/functionCallee.chain.scope b/resources/fixtures/scopes/csharp/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCallee.chain.scope rename to resources/fixtures/scopes/csharp/functionCallee.chain.scope diff --git a/data/fixtures/scopes/csharp/functionCallee.constructor.scope b/resources/fixtures/scopes/csharp/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCallee.constructor.scope rename to resources/fixtures/scopes/csharp/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/csharp/functionCallee.generic.scope b/resources/fixtures/scopes/csharp/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCallee.generic.scope rename to resources/fixtures/scopes/csharp/functionCallee.generic.scope diff --git a/data/fixtures/scopes/csharp/functionCallee.method.scope b/resources/fixtures/scopes/csharp/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCallee.method.scope rename to resources/fixtures/scopes/csharp/functionCallee.method.scope diff --git a/data/fixtures/scopes/csharp/functionCallee.scope b/resources/fixtures/scopes/csharp/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/csharp/functionCallee.scope rename to resources/fixtures/scopes/csharp/functionCallee.scope diff --git a/data/fixtures/scopes/csharp/ifStatement.scope b/resources/fixtures/scopes/csharp/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/csharp/ifStatement.scope rename to resources/fixtures/scopes/csharp/ifStatement.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.class.scope b/resources/fixtures/scopes/csharp/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.class.scope rename to resources/fixtures/scopes/csharp/interior/interior.class.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.constructor.scope b/resources/fixtures/scopes/csharp/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.constructor.scope rename to resources/fixtures/scopes/csharp/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.doWhile.scope b/resources/fixtures/scopes/csharp/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.doWhile.scope rename to resources/fixtures/scopes/csharp/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.enum.scope b/resources/fixtures/scopes/csharp/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.enum.scope rename to resources/fixtures/scopes/csharp/interior/interior.enum.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.for.scope b/resources/fixtures/scopes/csharp/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.for.scope rename to resources/fixtures/scopes/csharp/interior/interior.for.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.foreach.scope b/resources/fixtures/scopes/csharp/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.foreach.scope rename to resources/fixtures/scopes/csharp/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.function.scope b/resources/fixtures/scopes/csharp/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.function.scope rename to resources/fixtures/scopes/csharp/interior/interior.function.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.if.scope b/resources/fixtures/scopes/csharp/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.if.scope rename to resources/fixtures/scopes/csharp/interior/interior.if.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.interface.scope b/resources/fixtures/scopes/csharp/interior/interior.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.interface.scope rename to resources/fixtures/scopes/csharp/interior/interior.interface.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.lambda.scope b/resources/fixtures/scopes/csharp/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.lambda.scope rename to resources/fixtures/scopes/csharp/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.method.scope b/resources/fixtures/scopes/csharp/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.method.scope rename to resources/fixtures/scopes/csharp/interior/interior.method.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.namespace.scope b/resources/fixtures/scopes/csharp/interior/interior.namespace.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.namespace.scope rename to resources/fixtures/scopes/csharp/interior/interior.namespace.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.resource.scope b/resources/fixtures/scopes/csharp/interior/interior.resource.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.resource.scope rename to resources/fixtures/scopes/csharp/interior/interior.resource.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.switch.scope b/resources/fixtures/scopes/csharp/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.switch.scope rename to resources/fixtures/scopes/csharp/interior/interior.switch.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.switchCase.scope b/resources/fixtures/scopes/csharp/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.switchCase.scope rename to resources/fixtures/scopes/csharp/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.switchCase2.scope b/resources/fixtures/scopes/csharp/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/csharp/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.try.scope b/resources/fixtures/scopes/csharp/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.try.scope rename to resources/fixtures/scopes/csharp/interior/interior.try.scope diff --git a/data/fixtures/scopes/csharp/interior/interior.while.scope b/resources/fixtures/scopes/csharp/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/csharp/interior/interior.while.scope rename to resources/fixtures/scopes/csharp/interior/interior.while.scope diff --git a/data/fixtures/scopes/csharp/key.mapPair.iteration.scope b/resources/fixtures/scopes/csharp/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/key.mapPair.iteration.scope rename to resources/fixtures/scopes/csharp/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/csharp/key.mapPair.scope b/resources/fixtures/scopes/csharp/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/csharp/key.mapPair.scope rename to resources/fixtures/scopes/csharp/key.mapPair.scope diff --git a/data/fixtures/scopes/csharp/list.scope b/resources/fixtures/scopes/csharp/list.scope similarity index 100% rename from data/fixtures/scopes/csharp/list.scope rename to resources/fixtures/scopes/csharp/list.scope diff --git a/data/fixtures/scopes/csharp/map.scope b/resources/fixtures/scopes/csharp/map.scope similarity index 100% rename from data/fixtures/scopes/csharp/map.scope rename to resources/fixtures/scopes/csharp/map.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/csharp/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/csharp/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.actual.scope b/resources/fixtures/scopes/csharp/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.actual.scope rename to resources/fixtures/scopes/csharp/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.catch.scope b/resources/fixtures/scopes/csharp/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.catch.scope rename to resources/fixtures/scopes/csharp/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.method.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/csharp/name/name.argument.formal.scope b/resources/fixtures/scopes/csharp/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.argument.formal.scope rename to resources/fixtures/scopes/csharp/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/csharp/name/name.assignment.compound.scope b/resources/fixtures/scopes/csharp/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.assignment.compound.scope rename to resources/fixtures/scopes/csharp/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/csharp/name/name.assignment.scope b/resources/fixtures/scopes/csharp/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.assignment.scope rename to resources/fixtures/scopes/csharp/name/name.assignment.scope diff --git a/data/fixtures/scopes/csharp/name/name.assignment2.scope b/resources/fixtures/scopes/csharp/name/name.assignment2.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.assignment2.scope rename to resources/fixtures/scopes/csharp/name/name.assignment2.scope diff --git a/data/fixtures/scopes/csharp/name/name.class.scope b/resources/fixtures/scopes/csharp/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.class.scope rename to resources/fixtures/scopes/csharp/name/name.class.scope diff --git a/data/fixtures/scopes/csharp/name/name.constant.scope b/resources/fixtures/scopes/csharp/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.constant.scope rename to resources/fixtures/scopes/csharp/name/name.constant.scope diff --git a/data/fixtures/scopes/csharp/name/name.constructor.scope b/resources/fixtures/scopes/csharp/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.constructor.scope rename to resources/fixtures/scopes/csharp/name/name.constructor.scope diff --git a/data/fixtures/scopes/csharp/name/name.enum.scope b/resources/fixtures/scopes/csharp/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.enum.scope rename to resources/fixtures/scopes/csharp/name/name.enum.scope diff --git a/data/fixtures/scopes/csharp/name/name.field.class.scope b/resources/fixtures/scopes/csharp/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.field.class.scope rename to resources/fixtures/scopes/csharp/name/name.field.class.scope diff --git a/data/fixtures/scopes/csharp/name/name.field.enum.scope b/resources/fixtures/scopes/csharp/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.field.enum.scope rename to resources/fixtures/scopes/csharp/name/name.field.enum.scope diff --git a/data/fixtures/scopes/csharp/name/name.field.interface.scope b/resources/fixtures/scopes/csharp/name/name.field.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.field.interface.scope rename to resources/fixtures/scopes/csharp/name/name.field.interface.scope diff --git a/data/fixtures/scopes/csharp/name/name.foreach.scope b/resources/fixtures/scopes/csharp/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.foreach.scope rename to resources/fixtures/scopes/csharp/name/name.foreach.scope diff --git a/data/fixtures/scopes/csharp/name/name.function.scope b/resources/fixtures/scopes/csharp/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.function.scope rename to resources/fixtures/scopes/csharp/name/name.function.scope diff --git a/data/fixtures/scopes/csharp/name/name.interface.scope b/resources/fixtures/scopes/csharp/name/name.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.interface.scope rename to resources/fixtures/scopes/csharp/name/name.interface.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.block.scope b/resources/fixtures/scopes/csharp/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.block.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.block2.scope b/resources/fixtures/scopes/csharp/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.block2.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.block3.scope b/resources/fixtures/scopes/csharp/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.block3.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.block4.scope b/resources/fixtures/scopes/csharp/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.block4.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.class.scope b/resources/fixtures/scopes/csharp/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.class.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.document.scope b/resources/fixtures/scopes/csharp/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.document.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.enum.scope b/resources/fixtures/scopes/csharp/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.enum.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/csharp/name/name.iteration.interface.scope b/resources/fixtures/scopes/csharp/name/name.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.iteration.interface.scope rename to resources/fixtures/scopes/csharp/name/name.iteration.interface.scope diff --git a/data/fixtures/scopes/csharp/name/name.method.interface.scope b/resources/fixtures/scopes/csharp/name/name.method.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.method.interface.scope rename to resources/fixtures/scopes/csharp/name/name.method.interface.scope diff --git a/data/fixtures/scopes/csharp/name/name.method.scope b/resources/fixtures/scopes/csharp/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.method.scope rename to resources/fixtures/scopes/csharp/name/name.method.scope diff --git a/data/fixtures/scopes/csharp/name/name.namespace.scope b/resources/fixtures/scopes/csharp/name/name.namespace.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.namespace.scope rename to resources/fixtures/scopes/csharp/name/name.namespace.scope diff --git a/data/fixtures/scopes/csharp/name/name.resource.scope b/resources/fixtures/scopes/csharp/name/name.resource.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.resource.scope rename to resources/fixtures/scopes/csharp/name/name.resource.scope diff --git a/data/fixtures/scopes/csharp/name/name.typeAlias.scope b/resources/fixtures/scopes/csharp/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.typeAlias.scope rename to resources/fixtures/scopes/csharp/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/csharp/name/name.variable.initialized.scope b/resources/fixtures/scopes/csharp/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.variable.initialized.scope rename to resources/fixtures/scopes/csharp/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/csharp/name/name.variable.initialized2.scope b/resources/fixtures/scopes/csharp/name/name.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.variable.initialized2.scope rename to resources/fixtures/scopes/csharp/name/name.variable.initialized2.scope diff --git a/data/fixtures/scopes/csharp/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/csharp/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/csharp/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/csharp/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/csharp/namedFunction/namedFunction.constructor.scope b/resources/fixtures/scopes/csharp/namedFunction/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/namedFunction/namedFunction.constructor.scope rename to resources/fixtures/scopes/csharp/namedFunction/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.class.scope b/resources/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.document.scope b/resources/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/csharp/namedFunction/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/csharp/namedFunction/namedFunction.method.scope b/resources/fixtures/scopes/csharp/namedFunction/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/namedFunction/namedFunction.method.scope rename to resources/fixtures/scopes/csharp/namedFunction/namedFunction.method.scope diff --git a/data/fixtures/scopes/csharp/namedFunction/namedFunction.scope b/resources/fixtures/scopes/csharp/namedFunction/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/csharp/namedFunction/namedFunction.scope rename to resources/fixtures/scopes/csharp/namedFunction/namedFunction.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/csharp/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/csharp/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.assignment.scope b/resources/fixtures/scopes/csharp/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.assignment.scope rename to resources/fixtures/scopes/csharp/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.break.scope b/resources/fixtures/scopes/csharp/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.break.scope rename to resources/fixtures/scopes/csharp/statement/statement.break.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.class.scope b/resources/fixtures/scopes/csharp/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.class.scope rename to resources/fixtures/scopes/csharp/statement/statement.class.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.constant.scope b/resources/fixtures/scopes/csharp/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.constant.scope rename to resources/fixtures/scopes/csharp/statement/statement.constant.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.constructor.scope b/resources/fixtures/scopes/csharp/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.constructor.scope rename to resources/fixtures/scopes/csharp/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.continue.scope b/resources/fixtures/scopes/csharp/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.continue.scope rename to resources/fixtures/scopes/csharp/statement/statement.continue.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.doWhile.scope b/resources/fixtures/scopes/csharp/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.doWhile.scope rename to resources/fixtures/scopes/csharp/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.enum.scope b/resources/fixtures/scopes/csharp/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.enum.scope rename to resources/fixtures/scopes/csharp/statement/statement.enum.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.field.class.scope b/resources/fixtures/scopes/csharp/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.field.class.scope rename to resources/fixtures/scopes/csharp/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.field.interface.scope b/resources/fixtures/scopes/csharp/statement/statement.field.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.field.interface.scope rename to resources/fixtures/scopes/csharp/statement/statement.field.interface.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.for.scope b/resources/fixtures/scopes/csharp/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.for.scope rename to resources/fixtures/scopes/csharp/statement/statement.for.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.foreach.scope b/resources/fixtures/scopes/csharp/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.foreach.scope rename to resources/fixtures/scopes/csharp/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.function.scope b/resources/fixtures/scopes/csharp/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.function.scope rename to resources/fixtures/scopes/csharp/statement/statement.function.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.functionCall.scope b/resources/fixtures/scopes/csharp/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.functionCall.scope rename to resources/fixtures/scopes/csharp/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.if.scope b/resources/fixtures/scopes/csharp/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.if.scope rename to resources/fixtures/scopes/csharp/statement/statement.if.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.import.scope b/resources/fixtures/scopes/csharp/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.import.scope rename to resources/fixtures/scopes/csharp/statement/statement.import.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.interface.scope b/resources/fixtures/scopes/csharp/statement/statement.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.interface.scope rename to resources/fixtures/scopes/csharp/statement/statement.interface.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.iteration.block.scope b/resources/fixtures/scopes/csharp/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/csharp/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/csharp/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/csharp/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/csharp/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/csharp/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/csharp/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/csharp/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.iteration.class.scope b/resources/fixtures/scopes/csharp/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/csharp/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.iteration.document.scope b/resources/fixtures/scopes/csharp/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/csharp/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.iteration.interface.scope b/resources/fixtures/scopes/csharp/statement/statement.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.iteration.interface.scope rename to resources/fixtures/scopes/csharp/statement/statement.iteration.interface.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.method.interface.scope b/resources/fixtures/scopes/csharp/statement/statement.method.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.method.interface.scope rename to resources/fixtures/scopes/csharp/statement/statement.method.interface.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.method.scope b/resources/fixtures/scopes/csharp/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.method.scope rename to resources/fixtures/scopes/csharp/statement/statement.method.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.namespace.scope b/resources/fixtures/scopes/csharp/statement/statement.namespace.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.namespace.scope rename to resources/fixtures/scopes/csharp/statement/statement.namespace.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.resource.scope b/resources/fixtures/scopes/csharp/statement/statement.resource.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.resource.scope rename to resources/fixtures/scopes/csharp/statement/statement.resource.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.return.scope b/resources/fixtures/scopes/csharp/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.return.scope rename to resources/fixtures/scopes/csharp/statement/statement.return.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.switch.scope b/resources/fixtures/scopes/csharp/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.switch.scope rename to resources/fixtures/scopes/csharp/statement/statement.switch.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.throw.scope b/resources/fixtures/scopes/csharp/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.throw.scope rename to resources/fixtures/scopes/csharp/statement/statement.throw.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.try.scope b/resources/fixtures/scopes/csharp/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.try.scope rename to resources/fixtures/scopes/csharp/statement/statement.try.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.typeAlias.scope b/resources/fixtures/scopes/csharp/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/csharp/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.update.scope b/resources/fixtures/scopes/csharp/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.update.scope rename to resources/fixtures/scopes/csharp/statement/statement.update.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.update2.scope b/resources/fixtures/scopes/csharp/statement/statement.update2.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.update2.scope rename to resources/fixtures/scopes/csharp/statement/statement.update2.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/csharp/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/csharp/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.variable.initialized2.scope b/resources/fixtures/scopes/csharp/statement/statement.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.variable.initialized2.scope rename to resources/fixtures/scopes/csharp/statement/statement.variable.initialized2.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/csharp/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/csharp/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.while.scope b/resources/fixtures/scopes/csharp/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.while.scope rename to resources/fixtures/scopes/csharp/statement/statement.while.scope diff --git a/data/fixtures/scopes/csharp/statement/statement.yield.scope b/resources/fixtures/scopes/csharp/statement/statement.yield.scope similarity index 100% rename from data/fixtures/scopes/csharp/statement/statement.yield.scope rename to resources/fixtures/scopes/csharp/statement/statement.yield.scope diff --git a/data/fixtures/scopes/csharp/string.multiLine.scope b/resources/fixtures/scopes/csharp/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/string.multiLine.scope rename to resources/fixtures/scopes/csharp/string.multiLine.scope diff --git a/data/fixtures/scopes/csharp/string.singleLine.scope b/resources/fixtures/scopes/csharp/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/string.singleLine.scope rename to resources/fixtures/scopes/csharp/string.singleLine.scope diff --git a/data/fixtures/scopes/csharp/textFragment.comment.block.scope b/resources/fixtures/scopes/csharp/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/csharp/textFragment.comment.block.scope rename to resources/fixtures/scopes/csharp/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/csharp/textFragment.comment.line.scope b/resources/fixtures/scopes/csharp/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/csharp/textFragment.comment.line.scope rename to resources/fixtures/scopes/csharp/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/csharp/textFragment.string.multiLine.scope b/resources/fixtures/scopes/csharp/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/csharp/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/csharp/textFragment.string.singleLine.scope b/resources/fixtures/scopes/csharp/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/csharp/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/csharp/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/csharp/type/type.alias.scope b/resources/fixtures/scopes/csharp/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.alias.scope rename to resources/fixtures/scopes/csharp/type/type.alias.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.catch.scope b/resources/fixtures/scopes/csharp/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.catch.scope rename to resources/fixtures/scopes/csharp/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.method.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/csharp/type/type.argument.formal.scope b/resources/fixtures/scopes/csharp/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.argument.formal.scope rename to resources/fixtures/scopes/csharp/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/csharp/type/type.cast.scope b/resources/fixtures/scopes/csharp/type/type.cast.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.cast.scope rename to resources/fixtures/scopes/csharp/type/type.cast.scope diff --git a/data/fixtures/scopes/csharp/type/type.class.scope b/resources/fixtures/scopes/csharp/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.class.scope rename to resources/fixtures/scopes/csharp/type/type.class.scope diff --git a/data/fixtures/scopes/csharp/type/type.constant.scope b/resources/fixtures/scopes/csharp/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.constant.scope rename to resources/fixtures/scopes/csharp/type/type.constant.scope diff --git a/data/fixtures/scopes/csharp/type/type.enum.scope b/resources/fixtures/scopes/csharp/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.enum.scope rename to resources/fixtures/scopes/csharp/type/type.enum.scope diff --git a/data/fixtures/scopes/csharp/type/type.field.class.scope b/resources/fixtures/scopes/csharp/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.field.class.scope rename to resources/fixtures/scopes/csharp/type/type.field.class.scope diff --git a/data/fixtures/scopes/csharp/type/type.field.interface.scope b/resources/fixtures/scopes/csharp/type/type.field.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.field.interface.scope rename to resources/fixtures/scopes/csharp/type/type.field.interface.scope diff --git a/data/fixtures/scopes/csharp/type/type.foreach.scope b/resources/fixtures/scopes/csharp/type/type.foreach.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.foreach.scope rename to resources/fixtures/scopes/csharp/type/type.foreach.scope diff --git a/data/fixtures/scopes/csharp/type/type.interface.scope b/resources/fixtures/scopes/csharp/type/type.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.interface.scope rename to resources/fixtures/scopes/csharp/type/type.interface.scope diff --git a/data/fixtures/scopes/csharp/type/type.iteration.block.scope b/resources/fixtures/scopes/csharp/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.iteration.block.scope rename to resources/fixtures/scopes/csharp/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/csharp/type/type.iteration.block2.scope b/resources/fixtures/scopes/csharp/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.iteration.block2.scope rename to resources/fixtures/scopes/csharp/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/csharp/type/type.iteration.block3.scope b/resources/fixtures/scopes/csharp/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.iteration.block3.scope rename to resources/fixtures/scopes/csharp/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/csharp/type/type.iteration.block4.scope b/resources/fixtures/scopes/csharp/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.iteration.block4.scope rename to resources/fixtures/scopes/csharp/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/csharp/type/type.iteration.class.scope b/resources/fixtures/scopes/csharp/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.iteration.class.scope rename to resources/fixtures/scopes/csharp/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/csharp/type/type.iteration.document.scope b/resources/fixtures/scopes/csharp/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.iteration.document.scope rename to resources/fixtures/scopes/csharp/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/csharp/type/type.iteration.interface.scope b/resources/fixtures/scopes/csharp/type/type.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.iteration.interface.scope rename to resources/fixtures/scopes/csharp/type/type.iteration.interface.scope diff --git a/data/fixtures/scopes/csharp/type/type.resource.scope b/resources/fixtures/scopes/csharp/type/type.resource.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.resource.scope rename to resources/fixtures/scopes/csharp/type/type.resource.scope diff --git a/data/fixtures/scopes/csharp/type/type.return.method.scope b/resources/fixtures/scopes/csharp/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.return.method.scope rename to resources/fixtures/scopes/csharp/type/type.return.method.scope diff --git a/data/fixtures/scopes/csharp/type/type.return.scope b/resources/fixtures/scopes/csharp/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.return.scope rename to resources/fixtures/scopes/csharp/type/type.return.scope diff --git a/data/fixtures/scopes/csharp/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/csharp/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/csharp/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/csharp/type/type.typeArgument.scope b/resources/fixtures/scopes/csharp/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.typeArgument.scope rename to resources/fixtures/scopes/csharp/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/csharp/type/type.variable.initialized.scope b/resources/fixtures/scopes/csharp/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.variable.initialized.scope rename to resources/fixtures/scopes/csharp/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/csharp/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/csharp/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/csharp/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/csharp/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/csharp/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/csharp/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.actual.scope b/resources/fixtures/scopes/csharp/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.actual.scope rename to resources/fixtures/scopes/csharp/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.method.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/csharp/value/value.argument.formal.scope b/resources/fixtures/scopes/csharp/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.argument.formal.scope rename to resources/fixtures/scopes/csharp/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/csharp/value/value.assignment.compound.scope b/resources/fixtures/scopes/csharp/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.assignment.compound.scope rename to resources/fixtures/scopes/csharp/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/csharp/value/value.assignment.scope b/resources/fixtures/scopes/csharp/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.assignment.scope rename to resources/fixtures/scopes/csharp/value/value.assignment.scope diff --git a/data/fixtures/scopes/csharp/value/value.assignment2.scope b/resources/fixtures/scopes/csharp/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.assignment2.scope rename to resources/fixtures/scopes/csharp/value/value.assignment2.scope diff --git a/data/fixtures/scopes/csharp/value/value.constant.scope b/resources/fixtures/scopes/csharp/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.constant.scope rename to resources/fixtures/scopes/csharp/value/value.constant.scope diff --git a/data/fixtures/scopes/csharp/value/value.field.class.scope b/resources/fixtures/scopes/csharp/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.field.class.scope rename to resources/fixtures/scopes/csharp/value/value.field.class.scope diff --git a/data/fixtures/scopes/csharp/value/value.field.enum.scope b/resources/fixtures/scopes/csharp/value/value.field.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.field.enum.scope rename to resources/fixtures/scopes/csharp/value/value.field.enum.scope diff --git a/data/fixtures/scopes/csharp/value/value.field.interface.scope b/resources/fixtures/scopes/csharp/value/value.field.interface.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.field.interface.scope rename to resources/fixtures/scopes/csharp/value/value.field.interface.scope diff --git a/data/fixtures/scopes/csharp/value/value.foreach.scope b/resources/fixtures/scopes/csharp/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.foreach.scope rename to resources/fixtures/scopes/csharp/value/value.foreach.scope diff --git a/data/fixtures/scopes/csharp/value/value.iteration.block.scope b/resources/fixtures/scopes/csharp/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.iteration.block.scope rename to resources/fixtures/scopes/csharp/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/csharp/value/value.iteration.block2.scope b/resources/fixtures/scopes/csharp/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.iteration.block2.scope rename to resources/fixtures/scopes/csharp/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/csharp/value/value.iteration.block3.scope b/resources/fixtures/scopes/csharp/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.iteration.block3.scope rename to resources/fixtures/scopes/csharp/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/csharp/value/value.iteration.block4.scope b/resources/fixtures/scopes/csharp/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.iteration.block4.scope rename to resources/fixtures/scopes/csharp/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/csharp/value/value.iteration.class.scope b/resources/fixtures/scopes/csharp/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.iteration.class.scope rename to resources/fixtures/scopes/csharp/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/csharp/value/value.iteration.document.scope b/resources/fixtures/scopes/csharp/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.iteration.document.scope rename to resources/fixtures/scopes/csharp/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/csharp/value/value.iteration.enum.scope b/resources/fixtures/scopes/csharp/value/value.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.iteration.enum.scope rename to resources/fixtures/scopes/csharp/value/value.iteration.enum.scope diff --git a/data/fixtures/scopes/csharp/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/csharp/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/csharp/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/csharp/value/value.mapPair.scope b/resources/fixtures/scopes/csharp/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.mapPair.scope rename to resources/fixtures/scopes/csharp/value/value.mapPair.scope diff --git a/data/fixtures/scopes/csharp/value/value.resource.scope b/resources/fixtures/scopes/csharp/value/value.resource.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.resource.scope rename to resources/fixtures/scopes/csharp/value/value.resource.scope diff --git a/data/fixtures/scopes/csharp/value/value.return.lambda.scope b/resources/fixtures/scopes/csharp/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.return.lambda.scope rename to resources/fixtures/scopes/csharp/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/csharp/value/value.return.scope b/resources/fixtures/scopes/csharp/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.return.scope rename to resources/fixtures/scopes/csharp/value/value.return.scope diff --git a/data/fixtures/scopes/csharp/value/value.switch.scope b/resources/fixtures/scopes/csharp/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.switch.scope rename to resources/fixtures/scopes/csharp/value/value.switch.scope diff --git a/data/fixtures/scopes/csharp/value/value.throw.scope b/resources/fixtures/scopes/csharp/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.throw.scope rename to resources/fixtures/scopes/csharp/value/value.throw.scope diff --git a/data/fixtures/scopes/csharp/value/value.typeAlias.scope b/resources/fixtures/scopes/csharp/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.typeAlias.scope rename to resources/fixtures/scopes/csharp/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/csharp/value/value.variable.scope b/resources/fixtures/scopes/csharp/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.variable.scope rename to resources/fixtures/scopes/csharp/value/value.variable.scope diff --git a/data/fixtures/scopes/csharp/value/value.variable2.scope b/resources/fixtures/scopes/csharp/value/value.variable2.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.variable2.scope rename to resources/fixtures/scopes/csharp/value/value.variable2.scope diff --git a/data/fixtures/scopes/csharp/value/value.yield.scope b/resources/fixtures/scopes/csharp/value/value.yield.scope similarity index 100% rename from data/fixtures/scopes/csharp/value/value.yield.scope rename to resources/fixtures/scopes/csharp/value/value.yield.scope diff --git a/data/fixtures/scopes/css/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/css/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/css/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/css/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/css/argument/argument.actual.iteration2.scope b/resources/fixtures/scopes/css/argument/argument.actual.iteration2.scope similarity index 100% rename from data/fixtures/scopes/css/argument/argument.actual.iteration2.scope rename to resources/fixtures/scopes/css/argument/argument.actual.iteration2.scope diff --git a/data/fixtures/scopes/css/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/css/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/css/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/css/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/css/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/css/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/css/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/css/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/css/argument/argument.actual.singleLine2.scope b/resources/fixtures/scopes/css/argument/argument.actual.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/css/argument/argument.actual.singleLine2.scope rename to resources/fixtures/scopes/css/argument/argument.actual.singleLine2.scope diff --git a/data/fixtures/scopes/css/argument/argument.actual.singleLine3.scope b/resources/fixtures/scopes/css/argument/argument.actual.singleLine3.scope similarity index 100% rename from data/fixtures/scopes/css/argument/argument.actual.singleLine3.scope rename to resources/fixtures/scopes/css/argument/argument.actual.singleLine3.scope diff --git a/data/fixtures/scopes/css/argument/argument.actual.singleLine4.scope b/resources/fixtures/scopes/css/argument/argument.actual.singleLine4.scope similarity index 100% rename from data/fixtures/scopes/css/argument/argument.actual.singleLine4.scope rename to resources/fixtures/scopes/css/argument/argument.actual.singleLine4.scope diff --git a/data/fixtures/scopes/css/argumentList.actual.empty.scope b/resources/fixtures/scopes/css/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/css/argumentList.actual.empty.scope rename to resources/fixtures/scopes/css/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/css/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/css/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/css/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/css/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/css/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/css/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/css/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/css/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/css/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/css/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/css/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/css/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/css/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/css/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/css/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/css/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/css/comment.block.scope b/resources/fixtures/scopes/css/comment.block.scope similarity index 100% rename from data/fixtures/scopes/css/comment.block.scope rename to resources/fixtures/scopes/css/comment.block.scope diff --git a/data/fixtures/scopes/css/disqualifyDelimiter.scope b/resources/fixtures/scopes/css/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/css/disqualifyDelimiter.scope rename to resources/fixtures/scopes/css/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/css/functionCall.scope b/resources/fixtures/scopes/css/functionCall.scope similarity index 100% rename from data/fixtures/scopes/css/functionCall.scope rename to resources/fixtures/scopes/css/functionCall.scope diff --git a/data/fixtures/scopes/css/functionCallee.scope b/resources/fixtures/scopes/css/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/css/functionCallee.scope rename to resources/fixtures/scopes/css/functionCallee.scope diff --git a/data/fixtures/scopes/css/key.mapPair.iteration.scope b/resources/fixtures/scopes/css/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/css/key.mapPair.iteration.scope rename to resources/fixtures/scopes/css/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/css/key.mapPair.scope b/resources/fixtures/scopes/css/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/css/key.mapPair.scope rename to resources/fixtures/scopes/css/key.mapPair.scope diff --git a/data/fixtures/scopes/css/map.scope b/resources/fixtures/scopes/css/map.scope similarity index 100% rename from data/fixtures/scopes/css/map.scope rename to resources/fixtures/scopes/css/map.scope diff --git a/data/fixtures/scopes/css/name.iteration.block.scope b/resources/fixtures/scopes/css/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/css/name.iteration.block.scope rename to resources/fixtures/scopes/css/name.iteration.block.scope diff --git a/data/fixtures/scopes/css/name.iteration.document.scope b/resources/fixtures/scopes/css/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/css/name.iteration.document.scope rename to resources/fixtures/scopes/css/name.iteration.document.scope diff --git a/data/fixtures/scopes/css/selector/selector.scope b/resources/fixtures/scopes/css/selector/selector.scope similarity index 100% rename from data/fixtures/scopes/css/selector/selector.scope rename to resources/fixtures/scopes/css/selector/selector.scope diff --git a/data/fixtures/scopes/css/selector/selector2.scope b/resources/fixtures/scopes/css/selector/selector2.scope similarity index 100% rename from data/fixtures/scopes/css/selector/selector2.scope rename to resources/fixtures/scopes/css/selector/selector2.scope diff --git a/data/fixtures/scopes/css/selector/selector3.scope b/resources/fixtures/scopes/css/selector/selector3.scope similarity index 100% rename from data/fixtures/scopes/css/selector/selector3.scope rename to resources/fixtures/scopes/css/selector/selector3.scope diff --git a/data/fixtures/scopes/css/selector/selector4.scope b/resources/fixtures/scopes/css/selector/selector4.scope similarity index 100% rename from data/fixtures/scopes/css/selector/selector4.scope rename to resources/fixtures/scopes/css/selector/selector4.scope diff --git a/data/fixtures/scopes/css/selector/selector5.scope b/resources/fixtures/scopes/css/selector/selector5.scope similarity index 100% rename from data/fixtures/scopes/css/selector/selector5.scope rename to resources/fixtures/scopes/css/selector/selector5.scope diff --git a/data/fixtures/scopes/css/selector/selector6.scope b/resources/fixtures/scopes/css/selector/selector6.scope similarity index 100% rename from data/fixtures/scopes/css/selector/selector6.scope rename to resources/fixtures/scopes/css/selector/selector6.scope diff --git a/data/fixtures/scopes/css/selector/selector7.scope b/resources/fixtures/scopes/css/selector/selector7.scope similarity index 100% rename from data/fixtures/scopes/css/selector/selector7.scope rename to resources/fixtures/scopes/css/selector/selector7.scope diff --git a/data/fixtures/scopes/css/statement.iteration.document.scope b/resources/fixtures/scopes/css/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/css/statement.iteration.document.scope rename to resources/fixtures/scopes/css/statement.iteration.document.scope diff --git a/data/fixtures/scopes/css/statement.misc.scope b/resources/fixtures/scopes/css/statement.misc.scope similarity index 100% rename from data/fixtures/scopes/css/statement.misc.scope rename to resources/fixtures/scopes/css/statement.misc.scope diff --git a/data/fixtures/scopes/css/string.singleLine.scope b/resources/fixtures/scopes/css/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/css/string.singleLine.scope rename to resources/fixtures/scopes/css/string.singleLine.scope diff --git a/data/fixtures/scopes/css/textFragment.comment.block.scope b/resources/fixtures/scopes/css/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/css/textFragment.comment.block.scope rename to resources/fixtures/scopes/css/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/css/textFragment.string.singleLine.scope b/resources/fixtures/scopes/css/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/css/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/css/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/css/unit/unit.scope b/resources/fixtures/scopes/css/unit/unit.scope similarity index 100% rename from data/fixtures/scopes/css/unit/unit.scope rename to resources/fixtures/scopes/css/unit/unit.scope diff --git a/data/fixtures/scopes/css/unit/unit2.scope b/resources/fixtures/scopes/css/unit/unit2.scope similarity index 100% rename from data/fixtures/scopes/css/unit/unit2.scope rename to resources/fixtures/scopes/css/unit/unit2.scope diff --git a/data/fixtures/scopes/css/unit/unit3.scope b/resources/fixtures/scopes/css/unit/unit3.scope similarity index 100% rename from data/fixtures/scopes/css/unit/unit3.scope rename to resources/fixtures/scopes/css/unit/unit3.scope diff --git a/data/fixtures/scopes/css/unit/unit4.scope b/resources/fixtures/scopes/css/unit/unit4.scope similarity index 100% rename from data/fixtures/scopes/css/unit/unit4.scope rename to resources/fixtures/scopes/css/unit/unit4.scope diff --git a/data/fixtures/scopes/css/unit/unit5.scope b/resources/fixtures/scopes/css/unit/unit5.scope similarity index 100% rename from data/fixtures/scopes/css/unit/unit5.scope rename to resources/fixtures/scopes/css/unit/unit5.scope diff --git a/data/fixtures/scopes/css/value.mapPair.iteration.scope b/resources/fixtures/scopes/css/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/css/value.mapPair.iteration.scope rename to resources/fixtures/scopes/css/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/css/value.mapPair.scope b/resources/fixtures/scopes/css/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/css/value.mapPair.scope rename to resources/fixtures/scopes/css/value.mapPair.scope diff --git a/data/fixtures/scopes/css/value.mapPair2.scope b/resources/fixtures/scopes/css/value.mapPair2.scope similarity index 100% rename from data/fixtures/scopes/css/value.mapPair2.scope rename to resources/fixtures/scopes/css/value.mapPair2.scope diff --git a/data/fixtures/scopes/dart/anonymousFunction.scope b/resources/fixtures/scopes/dart/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/dart/anonymousFunction.scope rename to resources/fixtures/scopes/dart/anonymousFunction.scope diff --git a/data/fixtures/scopes/dart/anonymousFunction2.scope b/resources/fixtures/scopes/dart/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/dart/anonymousFunction2.scope rename to resources/fixtures/scopes/dart/anonymousFunction2.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.enum.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.actual.enum.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.enum.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.enum.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.enum.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.enum.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.enum.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.enum.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.catch.scope b/resources/fixtures/scopes/dart/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/dart/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/dart/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/dart/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/dart/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.enum.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.enum.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.enum.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.enum.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.enum.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.enum.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.enum.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.enum.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/dart/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/dart/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/dart/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/dart/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/dart/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/dart/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/dart/branch/branch.if.else.scope b/resources/fixtures/scopes/dart/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.if.else.scope rename to resources/fixtures/scopes/dart/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/dart/branch/branch.if.iteration.scope b/resources/fixtures/scopes/dart/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/dart/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/dart/branch/branch.if.scope b/resources/fixtures/scopes/dart/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.if.scope rename to resources/fixtures/scopes/dart/branch/branch.if.scope diff --git a/data/fixtures/scopes/dart/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/dart/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/dart/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/dart/branch/branch.switchCase.scope b/resources/fixtures/scopes/dart/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.switchCase.scope rename to resources/fixtures/scopes/dart/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/dart/branch/branch.switchCase2.scope b/resources/fixtures/scopes/dart/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/dart/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/dart/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/dart/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/dart/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/dart/branch/branch.ternary.scope b/resources/fixtures/scopes/dart/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.ternary.scope rename to resources/fixtures/scopes/dart/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/dart/branch/branch.try.iteration.scope b/resources/fixtures/scopes/dart/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/dart/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/dart/branch/branch.try.scope b/resources/fixtures/scopes/dart/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/dart/branch/branch.try.scope rename to resources/fixtures/scopes/dart/branch/branch.try.scope diff --git a/data/fixtures/scopes/dart/class.iteration.document.scope b/resources/fixtures/scopes/dart/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/dart/class.iteration.document.scope rename to resources/fixtures/scopes/dart/class.iteration.document.scope diff --git a/data/fixtures/scopes/dart/class.scope b/resources/fixtures/scopes/dart/class.scope similarity index 100% rename from data/fixtures/scopes/dart/class.scope rename to resources/fixtures/scopes/dart/class.scope diff --git a/data/fixtures/scopes/dart/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/dart/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/dart/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/dart/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/dart/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/dart/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/dart/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/dart/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/dart/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/dart/comment.block.scope b/resources/fixtures/scopes/dart/comment.block.scope similarity index 100% rename from data/fixtures/scopes/dart/comment.block.scope rename to resources/fixtures/scopes/dart/comment.block.scope diff --git a/data/fixtures/scopes/dart/comment.line.scope b/resources/fixtures/scopes/dart/comment.line.scope similarity index 100% rename from data/fixtures/scopes/dart/comment.line.scope rename to resources/fixtures/scopes/dart/comment.line.scope diff --git a/data/fixtures/scopes/dart/condition/condition.doWhile.scope b/resources/fixtures/scopes/dart/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/dart/condition/condition.doWhile.scope rename to resources/fixtures/scopes/dart/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/dart/condition/condition.for.scope b/resources/fixtures/scopes/dart/condition/condition.for.scope similarity index 100% rename from data/fixtures/scopes/dart/condition/condition.for.scope rename to resources/fixtures/scopes/dart/condition/condition.for.scope diff --git a/data/fixtures/scopes/dart/condition/condition.if.scope b/resources/fixtures/scopes/dart/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/dart/condition/condition.if.scope rename to resources/fixtures/scopes/dart/condition/condition.if.scope diff --git a/data/fixtures/scopes/dart/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/dart/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/dart/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/dart/condition/condition.switchCase.scope b/resources/fixtures/scopes/dart/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/dart/condition/condition.switchCase.scope rename to resources/fixtures/scopes/dart/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/dart/condition/condition.ternary.scope b/resources/fixtures/scopes/dart/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/dart/condition/condition.ternary.scope rename to resources/fixtures/scopes/dart/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/dart/condition/condition.while.scope b/resources/fixtures/scopes/dart/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/dart/condition/condition.while.scope rename to resources/fixtures/scopes/dart/condition/condition.while.scope diff --git a/data/fixtures/scopes/dart/disqualifyDelimiter.scope b/resources/fixtures/scopes/dart/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/dart/disqualifyDelimiter.scope rename to resources/fixtures/scopes/dart/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/dart/functionCall/functionCall.chain.scope b/resources/fixtures/scopes/dart/functionCall/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCall/functionCall.chain.scope rename to resources/fixtures/scopes/dart/functionCall/functionCall.chain.scope diff --git a/data/fixtures/scopes/dart/functionCall/functionCall.constructor.scope b/resources/fixtures/scopes/dart/functionCall/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCall/functionCall.constructor.scope rename to resources/fixtures/scopes/dart/functionCall/functionCall.constructor.scope diff --git a/data/fixtures/scopes/dart/functionCall/functionCall.enum.scope b/resources/fixtures/scopes/dart/functionCall/functionCall.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCall/functionCall.enum.scope rename to resources/fixtures/scopes/dart/functionCall/functionCall.enum.scope diff --git a/data/fixtures/scopes/dart/functionCall/functionCall.generic.scope b/resources/fixtures/scopes/dart/functionCall/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCall/functionCall.generic.scope rename to resources/fixtures/scopes/dart/functionCall/functionCall.generic.scope diff --git a/data/fixtures/scopes/dart/functionCall/functionCall.method.scope b/resources/fixtures/scopes/dart/functionCall/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCall/functionCall.method.scope rename to resources/fixtures/scopes/dart/functionCall/functionCall.method.scope diff --git a/data/fixtures/scopes/dart/functionCall/functionCall.scope b/resources/fixtures/scopes/dart/functionCall/functionCall.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCall/functionCall.scope rename to resources/fixtures/scopes/dart/functionCall/functionCall.scope diff --git a/data/fixtures/scopes/dart/functionCallee/functionCallee.chain.scope b/resources/fixtures/scopes/dart/functionCallee/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCallee/functionCallee.chain.scope rename to resources/fixtures/scopes/dart/functionCallee/functionCallee.chain.scope diff --git a/data/fixtures/scopes/dart/functionCallee/functionCallee.constructor.scope b/resources/fixtures/scopes/dart/functionCallee/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCallee/functionCallee.constructor.scope rename to resources/fixtures/scopes/dart/functionCallee/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/dart/functionCallee/functionCallee.enum.scope b/resources/fixtures/scopes/dart/functionCallee/functionCallee.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCallee/functionCallee.enum.scope rename to resources/fixtures/scopes/dart/functionCallee/functionCallee.enum.scope diff --git a/data/fixtures/scopes/dart/functionCallee/functionCallee.generic.scope b/resources/fixtures/scopes/dart/functionCallee/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCallee/functionCallee.generic.scope rename to resources/fixtures/scopes/dart/functionCallee/functionCallee.generic.scope diff --git a/data/fixtures/scopes/dart/functionCallee/functionCallee.method.scope b/resources/fixtures/scopes/dart/functionCallee/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCallee/functionCallee.method.scope rename to resources/fixtures/scopes/dart/functionCallee/functionCallee.method.scope diff --git a/data/fixtures/scopes/dart/functionCallee/functionCallee.scope b/resources/fixtures/scopes/dart/functionCallee/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/dart/functionCallee/functionCallee.scope rename to resources/fixtures/scopes/dart/functionCallee/functionCallee.scope diff --git a/data/fixtures/scopes/dart/ifStatement.scope b/resources/fixtures/scopes/dart/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/dart/ifStatement.scope rename to resources/fixtures/scopes/dart/ifStatement.scope diff --git a/data/fixtures/scopes/dart/interior/interior.class.scope b/resources/fixtures/scopes/dart/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.class.scope rename to resources/fixtures/scopes/dart/interior/interior.class.scope diff --git a/data/fixtures/scopes/dart/interior/interior.constructor.scope b/resources/fixtures/scopes/dart/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.constructor.scope rename to resources/fixtures/scopes/dart/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/dart/interior/interior.doWhile.scope b/resources/fixtures/scopes/dart/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.doWhile.scope rename to resources/fixtures/scopes/dart/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/dart/interior/interior.enum.scope b/resources/fixtures/scopes/dart/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.enum.scope rename to resources/fixtures/scopes/dart/interior/interior.enum.scope diff --git a/data/fixtures/scopes/dart/interior/interior.for.scope b/resources/fixtures/scopes/dart/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.for.scope rename to resources/fixtures/scopes/dart/interior/interior.for.scope diff --git a/data/fixtures/scopes/dart/interior/interior.foreach.scope b/resources/fixtures/scopes/dart/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.foreach.scope rename to resources/fixtures/scopes/dart/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/dart/interior/interior.function.scope b/resources/fixtures/scopes/dart/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.function.scope rename to resources/fixtures/scopes/dart/interior/interior.function.scope diff --git a/data/fixtures/scopes/dart/interior/interior.if.scope b/resources/fixtures/scopes/dart/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.if.scope rename to resources/fixtures/scopes/dart/interior/interior.if.scope diff --git a/data/fixtures/scopes/dart/interior/interior.lambda.scope b/resources/fixtures/scopes/dart/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.lambda.scope rename to resources/fixtures/scopes/dart/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/dart/interior/interior.method.scope b/resources/fixtures/scopes/dart/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.method.scope rename to resources/fixtures/scopes/dart/interior/interior.method.scope diff --git a/data/fixtures/scopes/dart/interior/interior.switch.scope b/resources/fixtures/scopes/dart/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.switch.scope rename to resources/fixtures/scopes/dart/interior/interior.switch.scope diff --git a/data/fixtures/scopes/dart/interior/interior.switchCase.scope b/resources/fixtures/scopes/dart/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.switchCase.scope rename to resources/fixtures/scopes/dart/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/dart/interior/interior.switchCase2.scope b/resources/fixtures/scopes/dart/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/dart/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/dart/interior/interior.try.scope b/resources/fixtures/scopes/dart/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.try.scope rename to resources/fixtures/scopes/dart/interior/interior.try.scope diff --git a/data/fixtures/scopes/dart/interior/interior.while.scope b/resources/fixtures/scopes/dart/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/dart/interior/interior.while.scope rename to resources/fixtures/scopes/dart/interior/interior.while.scope diff --git a/data/fixtures/scopes/dart/key/key.mapPair.iteration.scope b/resources/fixtures/scopes/dart/key/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/key/key.mapPair.iteration.scope rename to resources/fixtures/scopes/dart/key/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/dart/key/key.mapPair.scope b/resources/fixtures/scopes/dart/key/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/dart/key/key.mapPair.scope rename to resources/fixtures/scopes/dart/key/key.mapPair.scope diff --git a/data/fixtures/scopes/dart/list.scope b/resources/fixtures/scopes/dart/list.scope similarity index 100% rename from data/fixtures/scopes/dart/list.scope rename to resources/fixtures/scopes/dart/list.scope diff --git a/data/fixtures/scopes/dart/map.scope b/resources/fixtures/scopes/dart/map.scope similarity index 100% rename from data/fixtures/scopes/dart/map.scope rename to resources/fixtures/scopes/dart/map.scope diff --git a/data/fixtures/scopes/dart/map2.scope b/resources/fixtures/scopes/dart/map2.scope similarity index 100% rename from data/fixtures/scopes/dart/map2.scope rename to resources/fixtures/scopes/dart/map2.scope diff --git a/data/fixtures/scopes/dart/name.class.scope b/resources/fixtures/scopes/dart/name.class.scope similarity index 100% rename from data/fixtures/scopes/dart/name.class.scope rename to resources/fixtures/scopes/dart/name.class.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/dart/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/dart/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.actual.scope b/resources/fixtures/scopes/dart/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.actual.scope rename to resources/fixtures/scopes/dart/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.catch.scope b/resources/fixtures/scopes/dart/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.catch.scope rename to resources/fixtures/scopes/dart/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.method.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/dart/name/name.argument.formal.scope b/resources/fixtures/scopes/dart/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.argument.formal.scope rename to resources/fixtures/scopes/dart/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/dart/name/name.assignment.compound.scope b/resources/fixtures/scopes/dart/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.assignment.compound.scope rename to resources/fixtures/scopes/dart/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/dart/name/name.assignment.scope b/resources/fixtures/scopes/dart/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.assignment.scope rename to resources/fixtures/scopes/dart/name/name.assignment.scope diff --git a/data/fixtures/scopes/dart/name/name.constant.scope b/resources/fixtures/scopes/dart/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.constant.scope rename to resources/fixtures/scopes/dart/name/name.constant.scope diff --git a/data/fixtures/scopes/dart/name/name.constructor.scope b/resources/fixtures/scopes/dart/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.constructor.scope rename to resources/fixtures/scopes/dart/name/name.constructor.scope diff --git a/data/fixtures/scopes/dart/name/name.enum.scope b/resources/fixtures/scopes/dart/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.enum.scope rename to resources/fixtures/scopes/dart/name/name.enum.scope diff --git a/data/fixtures/scopes/dart/name/name.field.class.scope b/resources/fixtures/scopes/dart/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.field.class.scope rename to resources/fixtures/scopes/dart/name/name.field.class.scope diff --git a/data/fixtures/scopes/dart/name/name.field.enum.scope b/resources/fixtures/scopes/dart/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.field.enum.scope rename to resources/fixtures/scopes/dart/name/name.field.enum.scope diff --git a/data/fixtures/scopes/dart/name/name.foreach.scope b/resources/fixtures/scopes/dart/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.foreach.scope rename to resources/fixtures/scopes/dart/name/name.foreach.scope diff --git a/data/fixtures/scopes/dart/name/name.function.scope b/resources/fixtures/scopes/dart/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.function.scope rename to resources/fixtures/scopes/dart/name/name.function.scope diff --git a/data/fixtures/scopes/dart/name/name.iteration.block.scope b/resources/fixtures/scopes/dart/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.iteration.block.scope rename to resources/fixtures/scopes/dart/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/dart/name/name.iteration.block2.scope b/resources/fixtures/scopes/dart/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.iteration.block2.scope rename to resources/fixtures/scopes/dart/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/dart/name/name.iteration.block3.scope b/resources/fixtures/scopes/dart/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.iteration.block3.scope rename to resources/fixtures/scopes/dart/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/dart/name/name.iteration.block4.scope b/resources/fixtures/scopes/dart/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.iteration.block4.scope rename to resources/fixtures/scopes/dart/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/dart/name/name.iteration.class.scope b/resources/fixtures/scopes/dart/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.iteration.class.scope rename to resources/fixtures/scopes/dart/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/dart/name/name.iteration.document.scope b/resources/fixtures/scopes/dart/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.iteration.document.scope rename to resources/fixtures/scopes/dart/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/dart/name/name.iteration.enum.scope b/resources/fixtures/scopes/dart/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.iteration.enum.scope rename to resources/fixtures/scopes/dart/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/dart/name/name.method.scope b/resources/fixtures/scopes/dart/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.method.scope rename to resources/fixtures/scopes/dart/name/name.method.scope diff --git a/data/fixtures/scopes/dart/name/name.typeAlias.scope b/resources/fixtures/scopes/dart/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.typeAlias.scope rename to resources/fixtures/scopes/dart/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/dart/name/name.variable.initialized.scope b/resources/fixtures/scopes/dart/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.variable.initialized.scope rename to resources/fixtures/scopes/dart/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/dart/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/dart/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/dart/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/dart/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/dart/namedFunction.constructor.scope b/resources/fixtures/scopes/dart/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/namedFunction.constructor.scope rename to resources/fixtures/scopes/dart/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/dart/namedFunction.iteration.class.scope b/resources/fixtures/scopes/dart/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/dart/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/dart/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/dart/namedFunction.iteration.document.scope b/resources/fixtures/scopes/dart/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/dart/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/dart/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/dart/namedFunction.method.scope b/resources/fixtures/scopes/dart/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/dart/namedFunction.method.scope rename to resources/fixtures/scopes/dart/namedFunction.method.scope diff --git a/data/fixtures/scopes/dart/namedFunction.scope b/resources/fixtures/scopes/dart/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/dart/namedFunction.scope rename to resources/fixtures/scopes/dart/namedFunction.scope diff --git a/data/fixtures/scopes/dart/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/dart/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/dart/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/dart/statement/statement.assignment.scope b/resources/fixtures/scopes/dart/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.assignment.scope rename to resources/fixtures/scopes/dart/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/dart/statement/statement.break.scope b/resources/fixtures/scopes/dart/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.break.scope rename to resources/fixtures/scopes/dart/statement/statement.break.scope diff --git a/data/fixtures/scopes/dart/statement/statement.class.scope b/resources/fixtures/scopes/dart/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.class.scope rename to resources/fixtures/scopes/dart/statement/statement.class.scope diff --git a/data/fixtures/scopes/dart/statement/statement.constant.scope b/resources/fixtures/scopes/dart/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.constant.scope rename to resources/fixtures/scopes/dart/statement/statement.constant.scope diff --git a/data/fixtures/scopes/dart/statement/statement.constructor.scope b/resources/fixtures/scopes/dart/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.constructor.scope rename to resources/fixtures/scopes/dart/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/dart/statement/statement.continue.scope b/resources/fixtures/scopes/dart/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.continue.scope rename to resources/fixtures/scopes/dart/statement/statement.continue.scope diff --git a/data/fixtures/scopes/dart/statement/statement.doWhile.scope b/resources/fixtures/scopes/dart/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.doWhile.scope rename to resources/fixtures/scopes/dart/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/dart/statement/statement.enum.scope b/resources/fixtures/scopes/dart/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.enum.scope rename to resources/fixtures/scopes/dart/statement/statement.enum.scope diff --git a/data/fixtures/scopes/dart/statement/statement.field.class.scope b/resources/fixtures/scopes/dart/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.field.class.scope rename to resources/fixtures/scopes/dart/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/dart/statement/statement.for.scope b/resources/fixtures/scopes/dart/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.for.scope rename to resources/fixtures/scopes/dart/statement/statement.for.scope diff --git a/data/fixtures/scopes/dart/statement/statement.foreach.scope b/resources/fixtures/scopes/dart/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.foreach.scope rename to resources/fixtures/scopes/dart/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/dart/statement/statement.function.scope b/resources/fixtures/scopes/dart/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.function.scope rename to resources/fixtures/scopes/dart/statement/statement.function.scope diff --git a/data/fixtures/scopes/dart/statement/statement.functionCall.scope b/resources/fixtures/scopes/dart/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.functionCall.scope rename to resources/fixtures/scopes/dart/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/dart/statement/statement.if.scope b/resources/fixtures/scopes/dart/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.if.scope rename to resources/fixtures/scopes/dart/statement/statement.if.scope diff --git a/data/fixtures/scopes/dart/statement/statement.import.scope b/resources/fixtures/scopes/dart/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.import.scope rename to resources/fixtures/scopes/dart/statement/statement.import.scope diff --git a/data/fixtures/scopes/dart/statement/statement.iteration.block.scope b/resources/fixtures/scopes/dart/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/dart/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/dart/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/dart/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/dart/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/dart/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/dart/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/dart/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/dart/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/dart/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/dart/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/dart/statement/statement.iteration.class.scope b/resources/fixtures/scopes/dart/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/dart/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/dart/statement/statement.iteration.document.scope b/resources/fixtures/scopes/dart/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/dart/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/dart/statement/statement.method.scope b/resources/fixtures/scopes/dart/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.method.scope rename to resources/fixtures/scopes/dart/statement/statement.method.scope diff --git a/data/fixtures/scopes/dart/statement/statement.return.scope b/resources/fixtures/scopes/dart/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.return.scope rename to resources/fixtures/scopes/dart/statement/statement.return.scope diff --git a/data/fixtures/scopes/dart/statement/statement.switch.scope b/resources/fixtures/scopes/dart/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.switch.scope rename to resources/fixtures/scopes/dart/statement/statement.switch.scope diff --git a/data/fixtures/scopes/dart/statement/statement.throw.scope b/resources/fixtures/scopes/dart/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.throw.scope rename to resources/fixtures/scopes/dart/statement/statement.throw.scope diff --git a/data/fixtures/scopes/dart/statement/statement.try.scope b/resources/fixtures/scopes/dart/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.try.scope rename to resources/fixtures/scopes/dart/statement/statement.try.scope diff --git a/data/fixtures/scopes/dart/statement/statement.typeAlias.scope b/resources/fixtures/scopes/dart/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/dart/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/dart/statement/statement.update.scope b/resources/fixtures/scopes/dart/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.update.scope rename to resources/fixtures/scopes/dart/statement/statement.update.scope diff --git a/data/fixtures/scopes/dart/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/dart/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/dart/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/dart/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/dart/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/dart/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/dart/statement/statement.while.scope b/resources/fixtures/scopes/dart/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.while.scope rename to resources/fixtures/scopes/dart/statement/statement.while.scope diff --git a/data/fixtures/scopes/dart/statement/statement.yield.scope b/resources/fixtures/scopes/dart/statement/statement.yield.scope similarity index 100% rename from data/fixtures/scopes/dart/statement/statement.yield.scope rename to resources/fixtures/scopes/dart/statement/statement.yield.scope diff --git a/data/fixtures/scopes/dart/string.multiLine.scope b/resources/fixtures/scopes/dart/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/string.multiLine.scope rename to resources/fixtures/scopes/dart/string.multiLine.scope diff --git a/data/fixtures/scopes/dart/string.singleLine.scope b/resources/fixtures/scopes/dart/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/string.singleLine.scope rename to resources/fixtures/scopes/dart/string.singleLine.scope diff --git a/data/fixtures/scopes/dart/textFragment.comment.block.scope b/resources/fixtures/scopes/dart/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/dart/textFragment.comment.block.scope rename to resources/fixtures/scopes/dart/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/dart/textFragment.comment.line.scope b/resources/fixtures/scopes/dart/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/dart/textFragment.comment.line.scope rename to resources/fixtures/scopes/dart/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/dart/textFragment.string.multiLine.scope b/resources/fixtures/scopes/dart/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/dart/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/dart/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/dart/textFragment.string.singleLine.scope b/resources/fixtures/scopes/dart/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/dart/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/dart/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/dart/type/type.alias.scope b/resources/fixtures/scopes/dart/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.alias.scope rename to resources/fixtures/scopes/dart/type/type.alias.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.catch.scope b/resources/fixtures/scopes/dart/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.catch.scope rename to resources/fixtures/scopes/dart/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.method.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/dart/type/type.argument.formal.scope b/resources/fixtures/scopes/dart/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.argument.formal.scope rename to resources/fixtures/scopes/dart/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/dart/type/type.cast.scope b/resources/fixtures/scopes/dart/type/type.cast.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.cast.scope rename to resources/fixtures/scopes/dart/type/type.cast.scope diff --git a/data/fixtures/scopes/dart/type/type.class.scope b/resources/fixtures/scopes/dart/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.class.scope rename to resources/fixtures/scopes/dart/type/type.class.scope diff --git a/data/fixtures/scopes/dart/type/type.constant.scope b/resources/fixtures/scopes/dart/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.constant.scope rename to resources/fixtures/scopes/dart/type/type.constant.scope diff --git a/data/fixtures/scopes/dart/type/type.enum.scope b/resources/fixtures/scopes/dart/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.enum.scope rename to resources/fixtures/scopes/dart/type/type.enum.scope diff --git a/data/fixtures/scopes/dart/type/type.field.class.scope b/resources/fixtures/scopes/dart/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.field.class.scope rename to resources/fixtures/scopes/dart/type/type.field.class.scope diff --git a/data/fixtures/scopes/dart/type/type.foreach.scope b/resources/fixtures/scopes/dart/type/type.foreach.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.foreach.scope rename to resources/fixtures/scopes/dart/type/type.foreach.scope diff --git a/data/fixtures/scopes/dart/type/type.iteration.block.scope b/resources/fixtures/scopes/dart/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.iteration.block.scope rename to resources/fixtures/scopes/dart/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/dart/type/type.iteration.block2.scope b/resources/fixtures/scopes/dart/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.iteration.block2.scope rename to resources/fixtures/scopes/dart/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/dart/type/type.iteration.block3.scope b/resources/fixtures/scopes/dart/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.iteration.block3.scope rename to resources/fixtures/scopes/dart/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/dart/type/type.iteration.block4.scope b/resources/fixtures/scopes/dart/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.iteration.block4.scope rename to resources/fixtures/scopes/dart/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/dart/type/type.iteration.class.scope b/resources/fixtures/scopes/dart/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.iteration.class.scope rename to resources/fixtures/scopes/dart/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/dart/type/type.iteration.document.scope b/resources/fixtures/scopes/dart/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.iteration.document.scope rename to resources/fixtures/scopes/dart/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/dart/type/type.return.method.scope b/resources/fixtures/scopes/dart/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.return.method.scope rename to resources/fixtures/scopes/dart/type/type.return.method.scope diff --git a/data/fixtures/scopes/dart/type/type.return.scope b/resources/fixtures/scopes/dart/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.return.scope rename to resources/fixtures/scopes/dart/type/type.return.scope diff --git a/data/fixtures/scopes/dart/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/dart/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/dart/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/dart/type/type.typeArgument.scope b/resources/fixtures/scopes/dart/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.typeArgument.scope rename to resources/fixtures/scopes/dart/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/dart/type/type.variable.initialized.scope b/resources/fixtures/scopes/dart/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.variable.initialized.scope rename to resources/fixtures/scopes/dart/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/dart/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/dart/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/dart/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/dart/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/dart/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/dart/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.actual.scope b/resources/fixtures/scopes/dart/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.actual.scope rename to resources/fixtures/scopes/dart/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.method.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/dart/value/value.argument.formal.scope b/resources/fixtures/scopes/dart/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.argument.formal.scope rename to resources/fixtures/scopes/dart/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/dart/value/value.assignment.compound.scope b/resources/fixtures/scopes/dart/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.assignment.compound.scope rename to resources/fixtures/scopes/dart/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/dart/value/value.assignment.scope b/resources/fixtures/scopes/dart/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.assignment.scope rename to resources/fixtures/scopes/dart/value/value.assignment.scope diff --git a/data/fixtures/scopes/dart/value/value.constant.scope b/resources/fixtures/scopes/dart/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.constant.scope rename to resources/fixtures/scopes/dart/value/value.constant.scope diff --git a/data/fixtures/scopes/dart/value/value.field.class.scope b/resources/fixtures/scopes/dart/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.field.class.scope rename to resources/fixtures/scopes/dart/value/value.field.class.scope diff --git a/data/fixtures/scopes/dart/value/value.foreach.scope b/resources/fixtures/scopes/dart/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.foreach.scope rename to resources/fixtures/scopes/dart/value/value.foreach.scope diff --git a/data/fixtures/scopes/dart/value/value.iteration.block.scope b/resources/fixtures/scopes/dart/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.iteration.block.scope rename to resources/fixtures/scopes/dart/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/dart/value/value.iteration.block2.scope b/resources/fixtures/scopes/dart/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.iteration.block2.scope rename to resources/fixtures/scopes/dart/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/dart/value/value.iteration.block3.scope b/resources/fixtures/scopes/dart/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.iteration.block3.scope rename to resources/fixtures/scopes/dart/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/dart/value/value.iteration.block4.scope b/resources/fixtures/scopes/dart/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.iteration.block4.scope rename to resources/fixtures/scopes/dart/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/dart/value/value.iteration.class.scope b/resources/fixtures/scopes/dart/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.iteration.class.scope rename to resources/fixtures/scopes/dart/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/dart/value/value.iteration.document.scope b/resources/fixtures/scopes/dart/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.iteration.document.scope rename to resources/fixtures/scopes/dart/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/dart/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/dart/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/dart/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/dart/value/value.mapPair.scope b/resources/fixtures/scopes/dart/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.mapPair.scope rename to resources/fixtures/scopes/dart/value/value.mapPair.scope diff --git a/data/fixtures/scopes/dart/value/value.return.lambda.scope b/resources/fixtures/scopes/dart/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.return.lambda.scope rename to resources/fixtures/scopes/dart/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/dart/value/value.return.scope b/resources/fixtures/scopes/dart/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.return.scope rename to resources/fixtures/scopes/dart/value/value.return.scope diff --git a/data/fixtures/scopes/dart/value/value.switch.scope b/resources/fixtures/scopes/dart/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.switch.scope rename to resources/fixtures/scopes/dart/value/value.switch.scope diff --git a/data/fixtures/scopes/dart/value/value.throw.scope b/resources/fixtures/scopes/dart/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.throw.scope rename to resources/fixtures/scopes/dart/value/value.throw.scope diff --git a/data/fixtures/scopes/dart/value/value.typeAlias.scope b/resources/fixtures/scopes/dart/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.typeAlias.scope rename to resources/fixtures/scopes/dart/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/dart/value/value.variable.scope b/resources/fixtures/scopes/dart/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.variable.scope rename to resources/fixtures/scopes/dart/value/value.variable.scope diff --git a/data/fixtures/scopes/dart/value/value.yield.scope b/resources/fixtures/scopes/dart/value/value.yield.scope similarity index 100% rename from data/fixtures/scopes/dart/value/value.yield.scope rename to resources/fixtures/scopes/dart/value/value.yield.scope diff --git a/data/fixtures/scopes/go/anonymousFunction.scope b/resources/fixtures/scopes/go/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/go/anonymousFunction.scope rename to resources/fixtures/scopes/go/anonymousFunction.scope diff --git a/data/fixtures/scopes/go/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/go/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/go/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/go/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/go/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/go/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/go/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/go/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/go/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/go/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/go/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/go/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/go/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/go/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/go/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/go/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/go/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/go/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/go/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/go/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/go/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/go/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/go/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/go/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/go/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/go/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/go/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/go/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/go/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/go/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/go/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/go/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/go/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/go/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/go/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/go/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/go/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/go/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/go/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/go/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/go/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/go/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/go/branch/branch.if.else.scope b/resources/fixtures/scopes/go/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.if.else.scope rename to resources/fixtures/scopes/go/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/go/branch/branch.if.iteration.scope b/resources/fixtures/scopes/go/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/go/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/go/branch/branch.if.scope b/resources/fixtures/scopes/go/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.if.scope rename to resources/fixtures/scopes/go/branch/branch.if.scope diff --git a/data/fixtures/scopes/go/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/go/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/go/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/go/branch/branch.switchCase.iteration2.scope b/resources/fixtures/scopes/go/branch/branch.switchCase.iteration2.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.switchCase.iteration2.scope rename to resources/fixtures/scopes/go/branch/branch.switchCase.iteration2.scope diff --git a/data/fixtures/scopes/go/branch/branch.switchCase.scope b/resources/fixtures/scopes/go/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.switchCase.scope rename to resources/fixtures/scopes/go/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/go/branch/branch.switchCase2.scope b/resources/fixtures/scopes/go/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/go/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/go/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/go/class.iteration.document.scope b/resources/fixtures/scopes/go/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/go/class.iteration.document.scope rename to resources/fixtures/scopes/go/class.iteration.document.scope diff --git a/data/fixtures/scopes/go/class.scope b/resources/fixtures/scopes/go/class.scope similarity index 100% rename from data/fixtures/scopes/go/class.scope rename to resources/fixtures/scopes/go/class.scope diff --git a/data/fixtures/scopes/go/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/go/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/go/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/go/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/go/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/go/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/go/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/go/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/go/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/go/comment.block.scope b/resources/fixtures/scopes/go/comment.block.scope similarity index 100% rename from data/fixtures/scopes/go/comment.block.scope rename to resources/fixtures/scopes/go/comment.block.scope diff --git a/data/fixtures/scopes/go/comment.line.scope b/resources/fixtures/scopes/go/comment.line.scope similarity index 100% rename from data/fixtures/scopes/go/comment.line.scope rename to resources/fixtures/scopes/go/comment.line.scope diff --git a/data/fixtures/scopes/go/condition/condition.for.scope b/resources/fixtures/scopes/go/condition/condition.for.scope similarity index 100% rename from data/fixtures/scopes/go/condition/condition.for.scope rename to resources/fixtures/scopes/go/condition/condition.for.scope diff --git a/data/fixtures/scopes/go/condition/condition.if.scope b/resources/fixtures/scopes/go/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/go/condition/condition.if.scope rename to resources/fixtures/scopes/go/condition/condition.if.scope diff --git a/data/fixtures/scopes/go/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/go/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/go/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/go/condition/condition.switchCase.iteration2.scope b/resources/fixtures/scopes/go/condition/condition.switchCase.iteration2.scope similarity index 100% rename from data/fixtures/scopes/go/condition/condition.switchCase.iteration2.scope rename to resources/fixtures/scopes/go/condition/condition.switchCase.iteration2.scope diff --git a/data/fixtures/scopes/go/condition/condition.switchCase.scope b/resources/fixtures/scopes/go/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/go/condition/condition.switchCase.scope rename to resources/fixtures/scopes/go/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/go/condition/condition.switchCase2.scope b/resources/fixtures/scopes/go/condition/condition.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/go/condition/condition.switchCase2.scope rename to resources/fixtures/scopes/go/condition/condition.switchCase2.scope diff --git a/data/fixtures/scopes/go/disqualifyDelimiter.scope b/resources/fixtures/scopes/go/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/go/disqualifyDelimiter.scope rename to resources/fixtures/scopes/go/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/go/functionCall.chain.scope b/resources/fixtures/scopes/go/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/go/functionCall.chain.scope rename to resources/fixtures/scopes/go/functionCall.chain.scope diff --git a/data/fixtures/scopes/go/functionCall.generic.scope b/resources/fixtures/scopes/go/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/go/functionCall.generic.scope rename to resources/fixtures/scopes/go/functionCall.generic.scope diff --git a/data/fixtures/scopes/go/functionCall.method.scope b/resources/fixtures/scopes/go/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/go/functionCall.method.scope rename to resources/fixtures/scopes/go/functionCall.method.scope diff --git a/data/fixtures/scopes/go/functionCall.scope b/resources/fixtures/scopes/go/functionCall.scope similarity index 100% rename from data/fixtures/scopes/go/functionCall.scope rename to resources/fixtures/scopes/go/functionCall.scope diff --git a/data/fixtures/scopes/go/functionCallee.chain.scope b/resources/fixtures/scopes/go/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/go/functionCallee.chain.scope rename to resources/fixtures/scopes/go/functionCallee.chain.scope diff --git a/data/fixtures/scopes/go/functionCallee.generic.scope b/resources/fixtures/scopes/go/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/go/functionCallee.generic.scope rename to resources/fixtures/scopes/go/functionCallee.generic.scope diff --git a/data/fixtures/scopes/go/functionCallee.method.scope b/resources/fixtures/scopes/go/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/go/functionCallee.method.scope rename to resources/fixtures/scopes/go/functionCallee.method.scope diff --git a/data/fixtures/scopes/go/functionCallee.scope b/resources/fixtures/scopes/go/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/go/functionCallee.scope rename to resources/fixtures/scopes/go/functionCallee.scope diff --git a/data/fixtures/scopes/go/ifStatement.scope b/resources/fixtures/scopes/go/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/go/ifStatement.scope rename to resources/fixtures/scopes/go/ifStatement.scope diff --git a/data/fixtures/scopes/go/interior/interior.class.scope b/resources/fixtures/scopes/go/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.class.scope rename to resources/fixtures/scopes/go/interior/interior.class.scope diff --git a/data/fixtures/scopes/go/interior/interior.for.scope b/resources/fixtures/scopes/go/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.for.scope rename to resources/fixtures/scopes/go/interior/interior.for.scope diff --git a/data/fixtures/scopes/go/interior/interior.foreach.scope b/resources/fixtures/scopes/go/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.foreach.scope rename to resources/fixtures/scopes/go/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/go/interior/interior.function.scope b/resources/fixtures/scopes/go/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.function.scope rename to resources/fixtures/scopes/go/interior/interior.function.scope diff --git a/data/fixtures/scopes/go/interior/interior.if.scope b/resources/fixtures/scopes/go/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.if.scope rename to resources/fixtures/scopes/go/interior/interior.if.scope diff --git a/data/fixtures/scopes/go/interior/interior.interface.scope b/resources/fixtures/scopes/go/interior/interior.interface.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.interface.scope rename to resources/fixtures/scopes/go/interior/interior.interface.scope diff --git a/data/fixtures/scopes/go/interior/interior.lambda.scope b/resources/fixtures/scopes/go/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.lambda.scope rename to resources/fixtures/scopes/go/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/go/interior/interior.method.scope b/resources/fixtures/scopes/go/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.method.scope rename to resources/fixtures/scopes/go/interior/interior.method.scope diff --git a/data/fixtures/scopes/go/interior/interior.switch.scope b/resources/fixtures/scopes/go/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.switch.scope rename to resources/fixtures/scopes/go/interior/interior.switch.scope diff --git a/data/fixtures/scopes/go/interior/interior.switch2.scope b/resources/fixtures/scopes/go/interior/interior.switch2.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.switch2.scope rename to resources/fixtures/scopes/go/interior/interior.switch2.scope diff --git a/data/fixtures/scopes/go/interior/interior.switchCase.scope b/resources/fixtures/scopes/go/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.switchCase.scope rename to resources/fixtures/scopes/go/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/go/interior/interior.switchCase2.scope b/resources/fixtures/scopes/go/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/go/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/go/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/go/key.mapPair.iteration.scope b/resources/fixtures/scopes/go/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/key.mapPair.iteration.scope rename to resources/fixtures/scopes/go/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/go/key.mapPair.scope b/resources/fixtures/scopes/go/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/go/key.mapPair.scope rename to resources/fixtures/scopes/go/key.mapPair.scope diff --git a/data/fixtures/scopes/go/list.scope b/resources/fixtures/scopes/go/list.scope similarity index 100% rename from data/fixtures/scopes/go/list.scope rename to resources/fixtures/scopes/go/list.scope diff --git a/data/fixtures/scopes/go/list2.scope b/resources/fixtures/scopes/go/list2.scope similarity index 100% rename from data/fixtures/scopes/go/list2.scope rename to resources/fixtures/scopes/go/list2.scope diff --git a/data/fixtures/scopes/go/list3.scope b/resources/fixtures/scopes/go/list3.scope similarity index 100% rename from data/fixtures/scopes/go/list3.scope rename to resources/fixtures/scopes/go/list3.scope diff --git a/data/fixtures/scopes/go/map.scope b/resources/fixtures/scopes/go/map.scope similarity index 100% rename from data/fixtures/scopes/go/map.scope rename to resources/fixtures/scopes/go/map.scope diff --git a/data/fixtures/scopes/go/map2.scope b/resources/fixtures/scopes/go/map2.scope similarity index 100% rename from data/fixtures/scopes/go/map2.scope rename to resources/fixtures/scopes/go/map2.scope diff --git a/data/fixtures/scopes/go/map3.scope b/resources/fixtures/scopes/go/map3.scope similarity index 100% rename from data/fixtures/scopes/go/map3.scope rename to resources/fixtures/scopes/go/map3.scope diff --git a/data/fixtures/scopes/go/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/go/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/go/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/go/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/go/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/go/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/go/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/go/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/go/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/go/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/go/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/go/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/go/name/name.argument.formal.method.scope b/resources/fixtures/scopes/go/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/go/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/go/name/name.argument.formal.scope b/resources/fixtures/scopes/go/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.argument.formal.scope rename to resources/fixtures/scopes/go/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/go/name/name.assignment.compound.scope b/resources/fixtures/scopes/go/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.assignment.compound.scope rename to resources/fixtures/scopes/go/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/go/name/name.assignment.scope b/resources/fixtures/scopes/go/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.assignment.scope rename to resources/fixtures/scopes/go/name/name.assignment.scope diff --git a/data/fixtures/scopes/go/name/name.class.scope b/resources/fixtures/scopes/go/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.class.scope rename to resources/fixtures/scopes/go/name/name.class.scope diff --git a/data/fixtures/scopes/go/name/name.constant.scope b/resources/fixtures/scopes/go/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.constant.scope rename to resources/fixtures/scopes/go/name/name.constant.scope diff --git a/data/fixtures/scopes/go/name/name.field.class.scope b/resources/fixtures/scopes/go/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.field.class.scope rename to resources/fixtures/scopes/go/name/name.field.class.scope diff --git a/data/fixtures/scopes/go/name/name.foreach.scope b/resources/fixtures/scopes/go/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.foreach.scope rename to resources/fixtures/scopes/go/name/name.foreach.scope diff --git a/data/fixtures/scopes/go/name/name.function.scope b/resources/fixtures/scopes/go/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.function.scope rename to resources/fixtures/scopes/go/name/name.function.scope diff --git a/data/fixtures/scopes/go/name/name.interface.scope b/resources/fixtures/scopes/go/name/name.interface.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.interface.scope rename to resources/fixtures/scopes/go/name/name.interface.scope diff --git a/data/fixtures/scopes/go/name/name.iteration.block.scope b/resources/fixtures/scopes/go/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.iteration.block.scope rename to resources/fixtures/scopes/go/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/go/name/name.iteration.block2.scope b/resources/fixtures/scopes/go/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.iteration.block2.scope rename to resources/fixtures/scopes/go/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/go/name/name.iteration.block3.scope b/resources/fixtures/scopes/go/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.iteration.block3.scope rename to resources/fixtures/scopes/go/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/go/name/name.iteration.class.scope b/resources/fixtures/scopes/go/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.iteration.class.scope rename to resources/fixtures/scopes/go/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/go/name/name.iteration.document.scope b/resources/fixtures/scopes/go/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.iteration.document.scope rename to resources/fixtures/scopes/go/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/go/name/name.iteration.interface.scope b/resources/fixtures/scopes/go/name/name.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.iteration.interface.scope rename to resources/fixtures/scopes/go/name/name.iteration.interface.scope diff --git a/data/fixtures/scopes/go/name/name.method.interface.scope b/resources/fixtures/scopes/go/name/name.method.interface.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.method.interface.scope rename to resources/fixtures/scopes/go/name/name.method.interface.scope diff --git a/data/fixtures/scopes/go/name/name.method.scope b/resources/fixtures/scopes/go/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.method.scope rename to resources/fixtures/scopes/go/name/name.method.scope diff --git a/data/fixtures/scopes/go/name/name.typeAlias.scope b/resources/fixtures/scopes/go/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.typeAlias.scope rename to resources/fixtures/scopes/go/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/go/name/name.variable.initialized.scope b/resources/fixtures/scopes/go/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.variable.initialized.scope rename to resources/fixtures/scopes/go/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/go/name/name.variable.initialized2.scope b/resources/fixtures/scopes/go/name/name.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.variable.initialized2.scope rename to resources/fixtures/scopes/go/name/name.variable.initialized2.scope diff --git a/data/fixtures/scopes/go/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/go/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/go/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/go/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/go/namedFunction.iteration.class.scope b/resources/fixtures/scopes/go/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/go/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/go/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/go/namedFunction.iteration.document.scope b/resources/fixtures/scopes/go/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/go/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/go/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/go/namedFunction.method.scope b/resources/fixtures/scopes/go/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/go/namedFunction.method.scope rename to resources/fixtures/scopes/go/namedFunction.method.scope diff --git a/data/fixtures/scopes/go/namedFunction.scope b/resources/fixtures/scopes/go/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/go/namedFunction.scope rename to resources/fixtures/scopes/go/namedFunction.scope diff --git a/data/fixtures/scopes/go/namedFunction2.scope b/resources/fixtures/scopes/go/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/go/namedFunction2.scope rename to resources/fixtures/scopes/go/namedFunction2.scope diff --git a/data/fixtures/scopes/go/namedFunction3.scope b/resources/fixtures/scopes/go/namedFunction3.scope similarity index 100% rename from data/fixtures/scopes/go/namedFunction3.scope rename to resources/fixtures/scopes/go/namedFunction3.scope diff --git a/data/fixtures/scopes/go/namedFunction4.scope b/resources/fixtures/scopes/go/namedFunction4.scope similarity index 100% rename from data/fixtures/scopes/go/namedFunction4.scope rename to resources/fixtures/scopes/go/namedFunction4.scope diff --git a/data/fixtures/scopes/go/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/go/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/go/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/go/statement/statement.assignment.scope b/resources/fixtures/scopes/go/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.assignment.scope rename to resources/fixtures/scopes/go/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/go/statement/statement.break.scope b/resources/fixtures/scopes/go/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.break.scope rename to resources/fixtures/scopes/go/statement/statement.break.scope diff --git a/data/fixtures/scopes/go/statement/statement.class.scope b/resources/fixtures/scopes/go/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.class.scope rename to resources/fixtures/scopes/go/statement/statement.class.scope diff --git a/data/fixtures/scopes/go/statement/statement.constant.scope b/resources/fixtures/scopes/go/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.constant.scope rename to resources/fixtures/scopes/go/statement/statement.constant.scope diff --git a/data/fixtures/scopes/go/statement/statement.continue.scope b/resources/fixtures/scopes/go/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.continue.scope rename to resources/fixtures/scopes/go/statement/statement.continue.scope diff --git a/data/fixtures/scopes/go/statement/statement.field.class.scope b/resources/fixtures/scopes/go/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.field.class.scope rename to resources/fixtures/scopes/go/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/go/statement/statement.for.scope b/resources/fixtures/scopes/go/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.for.scope rename to resources/fixtures/scopes/go/statement/statement.for.scope diff --git a/data/fixtures/scopes/go/statement/statement.foreach.scope b/resources/fixtures/scopes/go/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.foreach.scope rename to resources/fixtures/scopes/go/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/go/statement/statement.function.scope b/resources/fixtures/scopes/go/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.function.scope rename to resources/fixtures/scopes/go/statement/statement.function.scope diff --git a/data/fixtures/scopes/go/statement/statement.functionCall.scope b/resources/fixtures/scopes/go/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.functionCall.scope rename to resources/fixtures/scopes/go/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/go/statement/statement.if.scope b/resources/fixtures/scopes/go/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.if.scope rename to resources/fixtures/scopes/go/statement/statement.if.scope diff --git a/data/fixtures/scopes/go/statement/statement.import.scope b/resources/fixtures/scopes/go/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.import.scope rename to resources/fixtures/scopes/go/statement/statement.import.scope diff --git a/data/fixtures/scopes/go/statement/statement.interface.scope b/resources/fixtures/scopes/go/statement/statement.interface.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.interface.scope rename to resources/fixtures/scopes/go/statement/statement.interface.scope diff --git a/data/fixtures/scopes/go/statement/statement.iteration.block.scope b/resources/fixtures/scopes/go/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/go/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/go/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/go/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/go/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/go/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/go/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/go/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/go/statement/statement.iteration.class.scope b/resources/fixtures/scopes/go/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/go/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/go/statement/statement.iteration.document.scope b/resources/fixtures/scopes/go/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/go/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/go/statement/statement.iteration.interface.scope b/resources/fixtures/scopes/go/statement/statement.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.iteration.interface.scope rename to resources/fixtures/scopes/go/statement/statement.iteration.interface.scope diff --git a/data/fixtures/scopes/go/statement/statement.method.interface.scope b/resources/fixtures/scopes/go/statement/statement.method.interface.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.method.interface.scope rename to resources/fixtures/scopes/go/statement/statement.method.interface.scope diff --git a/data/fixtures/scopes/go/statement/statement.method.scope b/resources/fixtures/scopes/go/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.method.scope rename to resources/fixtures/scopes/go/statement/statement.method.scope diff --git a/data/fixtures/scopes/go/statement/statement.package.scope b/resources/fixtures/scopes/go/statement/statement.package.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.package.scope rename to resources/fixtures/scopes/go/statement/statement.package.scope diff --git a/data/fixtures/scopes/go/statement/statement.return.scope b/resources/fixtures/scopes/go/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.return.scope rename to resources/fixtures/scopes/go/statement/statement.return.scope diff --git a/data/fixtures/scopes/go/statement/statement.switch.scope b/resources/fixtures/scopes/go/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.switch.scope rename to resources/fixtures/scopes/go/statement/statement.switch.scope diff --git a/data/fixtures/scopes/go/statement/statement.typeAlias.scope b/resources/fixtures/scopes/go/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/go/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/go/statement/statement.update.scope b/resources/fixtures/scopes/go/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.update.scope rename to resources/fixtures/scopes/go/statement/statement.update.scope diff --git a/data/fixtures/scopes/go/statement/statement.update2.scope b/resources/fixtures/scopes/go/statement/statement.update2.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.update2.scope rename to resources/fixtures/scopes/go/statement/statement.update2.scope diff --git a/data/fixtures/scopes/go/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/go/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/go/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/go/statement/statement.variable.initialized2.scope b/resources/fixtures/scopes/go/statement/statement.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.variable.initialized2.scope rename to resources/fixtures/scopes/go/statement/statement.variable.initialized2.scope diff --git a/data/fixtures/scopes/go/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/go/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/go/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/go/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/go/string.multiLine.scope b/resources/fixtures/scopes/go/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/string.multiLine.scope rename to resources/fixtures/scopes/go/string.multiLine.scope diff --git a/data/fixtures/scopes/go/string.singleLine.scope b/resources/fixtures/scopes/go/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/string.singleLine.scope rename to resources/fixtures/scopes/go/string.singleLine.scope diff --git a/data/fixtures/scopes/go/textFragment.comment.block.scope b/resources/fixtures/scopes/go/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/go/textFragment.comment.block.scope rename to resources/fixtures/scopes/go/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/go/textFragment.comment.line.scope b/resources/fixtures/scopes/go/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/go/textFragment.comment.line.scope rename to resources/fixtures/scopes/go/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/go/textFragment.string.multiLine.scope b/resources/fixtures/scopes/go/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/go/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/go/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/go/textFragment.string.singleLine.scope b/resources/fixtures/scopes/go/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/go/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/go/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/go/type/type.alias.scope b/resources/fixtures/scopes/go/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.alias.scope rename to resources/fixtures/scopes/go/type/type.alias.scope diff --git a/data/fixtures/scopes/go/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/go/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/go/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/go/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/go/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/go/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/go/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/go/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/go/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/go/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/go/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/go/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/go/type/type.argument.formal.method.scope b/resources/fixtures/scopes/go/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/go/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/go/type/type.argument.formal.scope b/resources/fixtures/scopes/go/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.argument.formal.scope rename to resources/fixtures/scopes/go/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/go/type/type.class.scope b/resources/fixtures/scopes/go/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.class.scope rename to resources/fixtures/scopes/go/type/type.class.scope diff --git a/data/fixtures/scopes/go/type/type.constant.scope b/resources/fixtures/scopes/go/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.constant.scope rename to resources/fixtures/scopes/go/type/type.constant.scope diff --git a/data/fixtures/scopes/go/type/type.field.class.scope b/resources/fixtures/scopes/go/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.field.class.scope rename to resources/fixtures/scopes/go/type/type.field.class.scope diff --git a/data/fixtures/scopes/go/type/type.interface.scope b/resources/fixtures/scopes/go/type/type.interface.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.interface.scope rename to resources/fixtures/scopes/go/type/type.interface.scope diff --git a/data/fixtures/scopes/go/type/type.iteration.block.scope b/resources/fixtures/scopes/go/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.iteration.block.scope rename to resources/fixtures/scopes/go/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/go/type/type.iteration.block2.scope b/resources/fixtures/scopes/go/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.iteration.block2.scope rename to resources/fixtures/scopes/go/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/go/type/type.iteration.block3.scope b/resources/fixtures/scopes/go/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.iteration.block3.scope rename to resources/fixtures/scopes/go/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/go/type/type.iteration.class.scope b/resources/fixtures/scopes/go/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.iteration.class.scope rename to resources/fixtures/scopes/go/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/go/type/type.iteration.document.scope b/resources/fixtures/scopes/go/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.iteration.document.scope rename to resources/fixtures/scopes/go/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/go/type/type.return.lambda.scope b/resources/fixtures/scopes/go/type/type.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.return.lambda.scope rename to resources/fixtures/scopes/go/type/type.return.lambda.scope diff --git a/data/fixtures/scopes/go/type/type.return.method.scope b/resources/fixtures/scopes/go/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.return.method.scope rename to resources/fixtures/scopes/go/type/type.return.method.scope diff --git a/data/fixtures/scopes/go/type/type.return.scope b/resources/fixtures/scopes/go/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.return.scope rename to resources/fixtures/scopes/go/type/type.return.scope diff --git a/data/fixtures/scopes/go/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/go/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/go/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/go/type/type.typeArgument.scope b/resources/fixtures/scopes/go/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.typeArgument.scope rename to resources/fixtures/scopes/go/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/go/type/type.variable.initialized.scope b/resources/fixtures/scopes/go/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.variable.initialized.scope rename to resources/fixtures/scopes/go/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/go/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/go/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/go/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/go/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/go/value/value.assignment.compound.scope b/resources/fixtures/scopes/go/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.assignment.compound.scope rename to resources/fixtures/scopes/go/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/go/value/value.assignment.scope b/resources/fixtures/scopes/go/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.assignment.scope rename to resources/fixtures/scopes/go/value/value.assignment.scope diff --git a/data/fixtures/scopes/go/value/value.constant.scope b/resources/fixtures/scopes/go/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.constant.scope rename to resources/fixtures/scopes/go/value/value.constant.scope diff --git a/data/fixtures/scopes/go/value/value.foreach.scope b/resources/fixtures/scopes/go/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.foreach.scope rename to resources/fixtures/scopes/go/value/value.foreach.scope diff --git a/data/fixtures/scopes/go/value/value.iteration.block.scope b/resources/fixtures/scopes/go/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.iteration.block.scope rename to resources/fixtures/scopes/go/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/go/value/value.iteration.block2.scope b/resources/fixtures/scopes/go/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.iteration.block2.scope rename to resources/fixtures/scopes/go/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/go/value/value.iteration.block3.scope b/resources/fixtures/scopes/go/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.iteration.block3.scope rename to resources/fixtures/scopes/go/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/go/value/value.iteration.document.scope b/resources/fixtures/scopes/go/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.iteration.document.scope rename to resources/fixtures/scopes/go/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/go/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/go/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/go/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/go/value/value.mapPair.scope b/resources/fixtures/scopes/go/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.mapPair.scope rename to resources/fixtures/scopes/go/value/value.mapPair.scope diff --git a/data/fixtures/scopes/go/value/value.return.scope b/resources/fixtures/scopes/go/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.return.scope rename to resources/fixtures/scopes/go/value/value.return.scope diff --git a/data/fixtures/scopes/go/value/value.switch.scope b/resources/fixtures/scopes/go/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.switch.scope rename to resources/fixtures/scopes/go/value/value.switch.scope diff --git a/data/fixtures/scopes/go/value/value.switch2.scope b/resources/fixtures/scopes/go/value/value.switch2.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.switch2.scope rename to resources/fixtures/scopes/go/value/value.switch2.scope diff --git a/data/fixtures/scopes/go/value/value.typeAlias.scope b/resources/fixtures/scopes/go/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.typeAlias.scope rename to resources/fixtures/scopes/go/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/go/value/value.variable.scope b/resources/fixtures/scopes/go/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.variable.scope rename to resources/fixtures/scopes/go/value/value.variable.scope diff --git a/data/fixtures/scopes/go/value/value.variable2.scope b/resources/fixtures/scopes/go/value/value.variable2.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.variable2.scope rename to resources/fixtures/scopes/go/value/value.variable2.scope diff --git a/data/fixtures/scopes/go/value/value.variable3.scope b/resources/fixtures/scopes/go/value/value.variable3.scope similarity index 100% rename from data/fixtures/scopes/go/value/value.variable3.scope rename to resources/fixtures/scopes/go/value/value.variable3.scope diff --git a/data/fixtures/scopes/html/attribute.scope b/resources/fixtures/scopes/html/attribute.scope similarity index 100% rename from data/fixtures/scopes/html/attribute.scope rename to resources/fixtures/scopes/html/attribute.scope diff --git a/data/fixtures/scopes/html/comment.block.scope b/resources/fixtures/scopes/html/comment.block.scope similarity index 100% rename from data/fixtures/scopes/html/comment.block.scope rename to resources/fixtures/scopes/html/comment.block.scope diff --git a/data/fixtures/scopes/html/element.scope b/resources/fixtures/scopes/html/element.scope similarity index 100% rename from data/fixtures/scopes/html/element.scope rename to resources/fixtures/scopes/html/element.scope diff --git a/data/fixtures/scopes/html/endTag.scope b/resources/fixtures/scopes/html/endTag.scope similarity index 100% rename from data/fixtures/scopes/html/endTag.scope rename to resources/fixtures/scopes/html/endTag.scope diff --git a/data/fixtures/scopes/html/interior.element.scope b/resources/fixtures/scopes/html/interior.element.scope similarity index 100% rename from data/fixtures/scopes/html/interior.element.scope rename to resources/fixtures/scopes/html/interior.element.scope diff --git a/data/fixtures/scopes/html/key.attribute.scope b/resources/fixtures/scopes/html/key.attribute.scope similarity index 100% rename from data/fixtures/scopes/html/key.attribute.scope rename to resources/fixtures/scopes/html/key.attribute.scope diff --git a/data/fixtures/scopes/html/key.attribute2.scope b/resources/fixtures/scopes/html/key.attribute2.scope similarity index 100% rename from data/fixtures/scopes/html/key.attribute2.scope rename to resources/fixtures/scopes/html/key.attribute2.scope diff --git a/data/fixtures/scopes/html/startTag.scope b/resources/fixtures/scopes/html/startTag.scope similarity index 100% rename from data/fixtures/scopes/html/startTag.scope rename to resources/fixtures/scopes/html/startTag.scope diff --git a/data/fixtures/scopes/html/string.singleLine.scope b/resources/fixtures/scopes/html/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/html/string.singleLine.scope rename to resources/fixtures/scopes/html/string.singleLine.scope diff --git a/data/fixtures/scopes/html/tags.scope b/resources/fixtures/scopes/html/tags.scope similarity index 100% rename from data/fixtures/scopes/html/tags.scope rename to resources/fixtures/scopes/html/tags.scope diff --git a/data/fixtures/scopes/html/textFragment.comment.block.scope b/resources/fixtures/scopes/html/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/html/textFragment.comment.block.scope rename to resources/fixtures/scopes/html/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/html/textFragment.element.scope b/resources/fixtures/scopes/html/textFragment.element.scope similarity index 100% rename from data/fixtures/scopes/html/textFragment.element.scope rename to resources/fixtures/scopes/html/textFragment.element.scope diff --git a/data/fixtures/scopes/html/textFragment.string.singleLine.scope b/resources/fixtures/scopes/html/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/html/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/html/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/html/value.attribute.scope b/resources/fixtures/scopes/html/value.attribute.scope similarity index 100% rename from data/fixtures/scopes/html/value.attribute.scope rename to resources/fixtures/scopes/html/value.attribute.scope diff --git a/data/fixtures/scopes/java/anonymousFunction.scope b/resources/fixtures/scopes/java/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/java/anonymousFunction.scope rename to resources/fixtures/scopes/java/anonymousFunction.scope diff --git a/data/fixtures/scopes/java/anonymousFunction2.scope b/resources/fixtures/scopes/java/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/java/anonymousFunction2.scope rename to resources/fixtures/scopes/java/anonymousFunction2.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/java/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/java/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.enum.iteration.scope b/resources/fixtures/scopes/java/argument/argument.actual.enum.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.enum.iteration.scope rename to resources/fixtures/scopes/java/argument/argument.actual.enum.iteration.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.enum.multiLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.enum.multiLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.enum.singleLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.enum.singleLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/java/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/java/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/java/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/java/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/java/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/java/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.catch.scope b/resources/fixtures/scopes/java/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/java/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/java/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/java/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/java/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/java/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/java/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/java/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/java/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/java/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/java/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/java/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/java/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/java/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/java/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/java/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/java/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/java/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/java/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/java/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/java/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.enum.empty.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.enum.empty.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.enum.empty.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.enum.empty.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.enum.multiLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.enum.multiLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.enum.singleLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.enum.singleLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/java/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/java/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/java/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/java/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/java/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/java/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/java/branch/branch.if.else.scope b/resources/fixtures/scopes/java/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.if.else.scope rename to resources/fixtures/scopes/java/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/java/branch/branch.if.iteration.scope b/resources/fixtures/scopes/java/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/java/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/java/branch/branch.if.scope b/resources/fixtures/scopes/java/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.if.scope rename to resources/fixtures/scopes/java/branch/branch.if.scope diff --git a/data/fixtures/scopes/java/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/java/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/java/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/java/branch/branch.switchCase.scope b/resources/fixtures/scopes/java/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.switchCase.scope rename to resources/fixtures/scopes/java/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/java/branch/branch.switchCase2.scope b/resources/fixtures/scopes/java/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/java/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/java/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/java/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/java/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/java/branch/branch.ternary.scope b/resources/fixtures/scopes/java/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.ternary.scope rename to resources/fixtures/scopes/java/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/java/branch/branch.try.iteration.scope b/resources/fixtures/scopes/java/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/java/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/java/branch/branch.try.scope b/resources/fixtures/scopes/java/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/java/branch/branch.try.scope rename to resources/fixtures/scopes/java/branch/branch.try.scope diff --git a/data/fixtures/scopes/java/class.iteration.class.scope b/resources/fixtures/scopes/java/class.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/java/class.iteration.class.scope rename to resources/fixtures/scopes/java/class.iteration.class.scope diff --git a/data/fixtures/scopes/java/class.iteration.document.scope b/resources/fixtures/scopes/java/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/java/class.iteration.document.scope rename to resources/fixtures/scopes/java/class.iteration.document.scope diff --git a/data/fixtures/scopes/java/class.scope b/resources/fixtures/scopes/java/class.scope similarity index 100% rename from data/fixtures/scopes/java/class.scope rename to resources/fixtures/scopes/java/class.scope diff --git a/data/fixtures/scopes/java/class2.scope b/resources/fixtures/scopes/java/class2.scope similarity index 100% rename from data/fixtures/scopes/java/class2.scope rename to resources/fixtures/scopes/java/class2.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.iteration2.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.iteration2.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.iteration2.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.iteration2.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.iteration3.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.iteration3.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.iteration3.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.iteration3.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.multiLine2.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.multiLine2.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.multiLine2.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.multiLine3.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.multiLine3.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.multiLine3.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.multiLine3.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.singleLine2.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.singleLine2.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.singleLine2.scope diff --git a/data/fixtures/scopes/java/collectionItem.unenclosed.singleLine3.scope b/resources/fixtures/scopes/java/collectionItem.unenclosed.singleLine3.scope similarity index 100% rename from data/fixtures/scopes/java/collectionItem.unenclosed.singleLine3.scope rename to resources/fixtures/scopes/java/collectionItem.unenclosed.singleLine3.scope diff --git a/data/fixtures/scopes/java/comment.block.scope b/resources/fixtures/scopes/java/comment.block.scope similarity index 100% rename from data/fixtures/scopes/java/comment.block.scope rename to resources/fixtures/scopes/java/comment.block.scope diff --git a/data/fixtures/scopes/java/comment.block2.scope b/resources/fixtures/scopes/java/comment.block2.scope similarity index 100% rename from data/fixtures/scopes/java/comment.block2.scope rename to resources/fixtures/scopes/java/comment.block2.scope diff --git a/data/fixtures/scopes/java/comment.line.scope b/resources/fixtures/scopes/java/comment.line.scope similarity index 100% rename from data/fixtures/scopes/java/comment.line.scope rename to resources/fixtures/scopes/java/comment.line.scope diff --git a/data/fixtures/scopes/java/condition/condition.doWhile.scope b/resources/fixtures/scopes/java/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.doWhile.scope rename to resources/fixtures/scopes/java/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/java/condition/condition.for.scope b/resources/fixtures/scopes/java/condition/condition.for.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.for.scope rename to resources/fixtures/scopes/java/condition/condition.for.scope diff --git a/data/fixtures/scopes/java/condition/condition.if.scope b/resources/fixtures/scopes/java/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.if.scope rename to resources/fixtures/scopes/java/condition/condition.if.scope diff --git a/data/fixtures/scopes/java/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/java/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/java/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/java/condition/condition.switchCase.scope b/resources/fixtures/scopes/java/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.switchCase.scope rename to resources/fixtures/scopes/java/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/java/condition/condition.switchCase2.scope b/resources/fixtures/scopes/java/condition/condition.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.switchCase2.scope rename to resources/fixtures/scopes/java/condition/condition.switchCase2.scope diff --git a/data/fixtures/scopes/java/condition/condition.switchCase3.scope b/resources/fixtures/scopes/java/condition/condition.switchCase3.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.switchCase3.scope rename to resources/fixtures/scopes/java/condition/condition.switchCase3.scope diff --git a/data/fixtures/scopes/java/condition/condition.switchCase4.scope b/resources/fixtures/scopes/java/condition/condition.switchCase4.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.switchCase4.scope rename to resources/fixtures/scopes/java/condition/condition.switchCase4.scope diff --git a/data/fixtures/scopes/java/condition/condition.ternary.scope b/resources/fixtures/scopes/java/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.ternary.scope rename to resources/fixtures/scopes/java/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/java/condition/condition.while.scope b/resources/fixtures/scopes/java/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/java/condition/condition.while.scope rename to resources/fixtures/scopes/java/condition/condition.while.scope diff --git a/data/fixtures/scopes/java/disqualifyDelimiter.scope b/resources/fixtures/scopes/java/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/java/disqualifyDelimiter.scope rename to resources/fixtures/scopes/java/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/java/functionCall/functionCall.chain.scope b/resources/fixtures/scopes/java/functionCall/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/java/functionCall/functionCall.chain.scope rename to resources/fixtures/scopes/java/functionCall/functionCall.chain.scope diff --git a/data/fixtures/scopes/java/functionCall/functionCall.constructor.scope b/resources/fixtures/scopes/java/functionCall/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/functionCall/functionCall.constructor.scope rename to resources/fixtures/scopes/java/functionCall/functionCall.constructor.scope diff --git a/data/fixtures/scopes/java/functionCall/functionCall.enum.scope b/resources/fixtures/scopes/java/functionCall/functionCall.enum.scope similarity index 100% rename from data/fixtures/scopes/java/functionCall/functionCall.enum.scope rename to resources/fixtures/scopes/java/functionCall/functionCall.enum.scope diff --git a/data/fixtures/scopes/java/functionCall/functionCall.generic.scope b/resources/fixtures/scopes/java/functionCall/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/java/functionCall/functionCall.generic.scope rename to resources/fixtures/scopes/java/functionCall/functionCall.generic.scope diff --git a/data/fixtures/scopes/java/functionCall/functionCall.method.scope b/resources/fixtures/scopes/java/functionCall/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/java/functionCall/functionCall.method.scope rename to resources/fixtures/scopes/java/functionCall/functionCall.method.scope diff --git a/data/fixtures/scopes/java/functionCall/functionCall.scope b/resources/fixtures/scopes/java/functionCall/functionCall.scope similarity index 100% rename from data/fixtures/scopes/java/functionCall/functionCall.scope rename to resources/fixtures/scopes/java/functionCall/functionCall.scope diff --git a/data/fixtures/scopes/java/functionCallee/functionCallee.chain.scope b/resources/fixtures/scopes/java/functionCallee/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/java/functionCallee/functionCallee.chain.scope rename to resources/fixtures/scopes/java/functionCallee/functionCallee.chain.scope diff --git a/data/fixtures/scopes/java/functionCallee/functionCallee.constructor.scope b/resources/fixtures/scopes/java/functionCallee/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/functionCallee/functionCallee.constructor.scope rename to resources/fixtures/scopes/java/functionCallee/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/java/functionCallee/functionCallee.enum.scope b/resources/fixtures/scopes/java/functionCallee/functionCallee.enum.scope similarity index 100% rename from data/fixtures/scopes/java/functionCallee/functionCallee.enum.scope rename to resources/fixtures/scopes/java/functionCallee/functionCallee.enum.scope diff --git a/data/fixtures/scopes/java/functionCallee/functionCallee.generic.scope b/resources/fixtures/scopes/java/functionCallee/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/java/functionCallee/functionCallee.generic.scope rename to resources/fixtures/scopes/java/functionCallee/functionCallee.generic.scope diff --git a/data/fixtures/scopes/java/functionCallee/functionCallee.method.scope b/resources/fixtures/scopes/java/functionCallee/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/java/functionCallee/functionCallee.method.scope rename to resources/fixtures/scopes/java/functionCallee/functionCallee.method.scope diff --git a/data/fixtures/scopes/java/functionCallee/functionCallee.scope b/resources/fixtures/scopes/java/functionCallee/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/java/functionCallee/functionCallee.scope rename to resources/fixtures/scopes/java/functionCallee/functionCallee.scope diff --git a/data/fixtures/scopes/java/ifStatement.scope b/resources/fixtures/scopes/java/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/java/ifStatement.scope rename to resources/fixtures/scopes/java/ifStatement.scope diff --git a/data/fixtures/scopes/java/interior/interior.class.scope b/resources/fixtures/scopes/java/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.class.scope rename to resources/fixtures/scopes/java/interior/interior.class.scope diff --git a/data/fixtures/scopes/java/interior/interior.constructor.scope b/resources/fixtures/scopes/java/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.constructor.scope rename to resources/fixtures/scopes/java/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/java/interior/interior.doWhile.scope b/resources/fixtures/scopes/java/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.doWhile.scope rename to resources/fixtures/scopes/java/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/java/interior/interior.enum.scope b/resources/fixtures/scopes/java/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.enum.scope rename to resources/fixtures/scopes/java/interior/interior.enum.scope diff --git a/data/fixtures/scopes/java/interior/interior.for.scope b/resources/fixtures/scopes/java/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.for.scope rename to resources/fixtures/scopes/java/interior/interior.for.scope diff --git a/data/fixtures/scopes/java/interior/interior.foreach.scope b/resources/fixtures/scopes/java/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.foreach.scope rename to resources/fixtures/scopes/java/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/java/interior/interior.if.scope b/resources/fixtures/scopes/java/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.if.scope rename to resources/fixtures/scopes/java/interior/interior.if.scope diff --git a/data/fixtures/scopes/java/interior/interior.interface.scope b/resources/fixtures/scopes/java/interior/interior.interface.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.interface.scope rename to resources/fixtures/scopes/java/interior/interior.interface.scope diff --git a/data/fixtures/scopes/java/interior/interior.lambda.scope b/resources/fixtures/scopes/java/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.lambda.scope rename to resources/fixtures/scopes/java/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/java/interior/interior.method.scope b/resources/fixtures/scopes/java/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.method.scope rename to resources/fixtures/scopes/java/interior/interior.method.scope diff --git a/data/fixtures/scopes/java/interior/interior.resource.scope b/resources/fixtures/scopes/java/interior/interior.resource.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.resource.scope rename to resources/fixtures/scopes/java/interior/interior.resource.scope diff --git a/data/fixtures/scopes/java/interior/interior.static.scope b/resources/fixtures/scopes/java/interior/interior.static.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.static.scope rename to resources/fixtures/scopes/java/interior/interior.static.scope diff --git a/data/fixtures/scopes/java/interior/interior.switch.scope b/resources/fixtures/scopes/java/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.switch.scope rename to resources/fixtures/scopes/java/interior/interior.switch.scope diff --git a/data/fixtures/scopes/java/interior/interior.switchCase.scope b/resources/fixtures/scopes/java/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.switchCase.scope rename to resources/fixtures/scopes/java/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/java/interior/interior.switchCase2.scope b/resources/fixtures/scopes/java/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/java/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/java/interior/interior.try.scope b/resources/fixtures/scopes/java/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.try.scope rename to resources/fixtures/scopes/java/interior/interior.try.scope diff --git a/data/fixtures/scopes/java/interior/interior.while.scope b/resources/fixtures/scopes/java/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/java/interior/interior.while.scope rename to resources/fixtures/scopes/java/interior/interior.while.scope diff --git a/data/fixtures/scopes/java/list.scope b/resources/fixtures/scopes/java/list.scope similarity index 100% rename from data/fixtures/scopes/java/list.scope rename to resources/fixtures/scopes/java/list.scope diff --git a/data/fixtures/scopes/java/name/name.argument.catch.scope b/resources/fixtures/scopes/java/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.argument.catch.scope rename to resources/fixtures/scopes/java/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/java/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/java/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/java/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/java/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/java/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/java/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/java/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/java/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/java/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/java/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/java/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/java/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/java/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/java/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/java/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/java/name/name.argument.formal.method.scope b/resources/fixtures/scopes/java/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/java/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/java/name/name.assignment.compound.scope b/resources/fixtures/scopes/java/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.assignment.compound.scope rename to resources/fixtures/scopes/java/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/java/name/name.assignment.scope b/resources/fixtures/scopes/java/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.assignment.scope rename to resources/fixtures/scopes/java/name/name.assignment.scope diff --git a/data/fixtures/scopes/java/name/name.class.scope b/resources/fixtures/scopes/java/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.class.scope rename to resources/fixtures/scopes/java/name/name.class.scope diff --git a/data/fixtures/scopes/java/name/name.class2.scope b/resources/fixtures/scopes/java/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.class2.scope rename to resources/fixtures/scopes/java/name/name.class2.scope diff --git a/data/fixtures/scopes/java/name/name.constant.scope b/resources/fixtures/scopes/java/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.constant.scope rename to resources/fixtures/scopes/java/name/name.constant.scope diff --git a/data/fixtures/scopes/java/name/name.constructor.scope b/resources/fixtures/scopes/java/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.constructor.scope rename to resources/fixtures/scopes/java/name/name.constructor.scope diff --git a/data/fixtures/scopes/java/name/name.constructor2.scope b/resources/fixtures/scopes/java/name/name.constructor2.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.constructor2.scope rename to resources/fixtures/scopes/java/name/name.constructor2.scope diff --git a/data/fixtures/scopes/java/name/name.enum.scope b/resources/fixtures/scopes/java/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.enum.scope rename to resources/fixtures/scopes/java/name/name.enum.scope diff --git a/data/fixtures/scopes/java/name/name.field.class.scope b/resources/fixtures/scopes/java/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.field.class.scope rename to resources/fixtures/scopes/java/name/name.field.class.scope diff --git a/data/fixtures/scopes/java/name/name.field.enum.scope b/resources/fixtures/scopes/java/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.field.enum.scope rename to resources/fixtures/scopes/java/name/name.field.enum.scope diff --git a/data/fixtures/scopes/java/name/name.field.interface.scope b/resources/fixtures/scopes/java/name/name.field.interface.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.field.interface.scope rename to resources/fixtures/scopes/java/name/name.field.interface.scope diff --git a/data/fixtures/scopes/java/name/name.foreach.scope b/resources/fixtures/scopes/java/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.foreach.scope rename to resources/fixtures/scopes/java/name/name.foreach.scope diff --git a/data/fixtures/scopes/java/name/name.interface.scope b/resources/fixtures/scopes/java/name/name.interface.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.interface.scope rename to resources/fixtures/scopes/java/name/name.interface.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.block.scope b/resources/fixtures/scopes/java/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.block.scope rename to resources/fixtures/scopes/java/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.block2.scope b/resources/fixtures/scopes/java/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.block2.scope rename to resources/fixtures/scopes/java/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.block3.scope b/resources/fixtures/scopes/java/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.block3.scope rename to resources/fixtures/scopes/java/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.block4.scope b/resources/fixtures/scopes/java/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.block4.scope rename to resources/fixtures/scopes/java/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.class.scope b/resources/fixtures/scopes/java/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.class.scope rename to resources/fixtures/scopes/java/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.document.scope b/resources/fixtures/scopes/java/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.document.scope rename to resources/fixtures/scopes/java/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.enum.scope b/resources/fixtures/scopes/java/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.enum.scope rename to resources/fixtures/scopes/java/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/java/name/name.iteration.interface.scope b/resources/fixtures/scopes/java/name/name.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.iteration.interface.scope rename to resources/fixtures/scopes/java/name/name.iteration.interface.scope diff --git a/data/fixtures/scopes/java/name/name.method.interface.scope b/resources/fixtures/scopes/java/name/name.method.interface.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.method.interface.scope rename to resources/fixtures/scopes/java/name/name.method.interface.scope diff --git a/data/fixtures/scopes/java/name/name.method.scope b/resources/fixtures/scopes/java/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.method.scope rename to resources/fixtures/scopes/java/name/name.method.scope diff --git a/data/fixtures/scopes/java/name/name.method2.scope b/resources/fixtures/scopes/java/name/name.method2.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.method2.scope rename to resources/fixtures/scopes/java/name/name.method2.scope diff --git a/data/fixtures/scopes/java/name/name.resource.scope b/resources/fixtures/scopes/java/name/name.resource.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.resource.scope rename to resources/fixtures/scopes/java/name/name.resource.scope diff --git a/data/fixtures/scopes/java/name/name.variable.initialized.scope b/resources/fixtures/scopes/java/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.variable.initialized.scope rename to resources/fixtures/scopes/java/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/java/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/java/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/java/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/java/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/java/namedFunction.constructor.scope b/resources/fixtures/scopes/java/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/namedFunction.constructor.scope rename to resources/fixtures/scopes/java/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/java/namedFunction.constructor2.scope b/resources/fixtures/scopes/java/namedFunction.constructor2.scope similarity index 100% rename from data/fixtures/scopes/java/namedFunction.constructor2.scope rename to resources/fixtures/scopes/java/namedFunction.constructor2.scope diff --git a/data/fixtures/scopes/java/namedFunction.iteration.class.scope b/resources/fixtures/scopes/java/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/java/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/java/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/java/namedFunction.method.scope b/resources/fixtures/scopes/java/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/java/namedFunction.method.scope rename to resources/fixtures/scopes/java/namedFunction.method.scope diff --git a/data/fixtures/scopes/java/namedFunction.method2.scope b/resources/fixtures/scopes/java/namedFunction.method2.scope similarity index 100% rename from data/fixtures/scopes/java/namedFunction.method2.scope rename to resources/fixtures/scopes/java/namedFunction.method2.scope diff --git a/data/fixtures/scopes/java/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/java/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/java/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/java/statement/statement.assignment.scope b/resources/fixtures/scopes/java/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.assignment.scope rename to resources/fixtures/scopes/java/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/java/statement/statement.break.scope b/resources/fixtures/scopes/java/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.break.scope rename to resources/fixtures/scopes/java/statement/statement.break.scope diff --git a/data/fixtures/scopes/java/statement/statement.class.scope b/resources/fixtures/scopes/java/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.class.scope rename to resources/fixtures/scopes/java/statement/statement.class.scope diff --git a/data/fixtures/scopes/java/statement/statement.class2.scope b/resources/fixtures/scopes/java/statement/statement.class2.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.class2.scope rename to resources/fixtures/scopes/java/statement/statement.class2.scope diff --git a/data/fixtures/scopes/java/statement/statement.constant.scope b/resources/fixtures/scopes/java/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.constant.scope rename to resources/fixtures/scopes/java/statement/statement.constant.scope diff --git a/data/fixtures/scopes/java/statement/statement.constructor.scope b/resources/fixtures/scopes/java/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.constructor.scope rename to resources/fixtures/scopes/java/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/java/statement/statement.constructor2.scope b/resources/fixtures/scopes/java/statement/statement.constructor2.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.constructor2.scope rename to resources/fixtures/scopes/java/statement/statement.constructor2.scope diff --git a/data/fixtures/scopes/java/statement/statement.continue.scope b/resources/fixtures/scopes/java/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.continue.scope rename to resources/fixtures/scopes/java/statement/statement.continue.scope diff --git a/data/fixtures/scopes/java/statement/statement.doWhile.scope b/resources/fixtures/scopes/java/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.doWhile.scope rename to resources/fixtures/scopes/java/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/java/statement/statement.enum.scope b/resources/fixtures/scopes/java/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.enum.scope rename to resources/fixtures/scopes/java/statement/statement.enum.scope diff --git a/data/fixtures/scopes/java/statement/statement.field.class.scope b/resources/fixtures/scopes/java/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.field.class.scope rename to resources/fixtures/scopes/java/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/java/statement/statement.field.interface.scope b/resources/fixtures/scopes/java/statement/statement.field.interface.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.field.interface.scope rename to resources/fixtures/scopes/java/statement/statement.field.interface.scope diff --git a/data/fixtures/scopes/java/statement/statement.for.scope b/resources/fixtures/scopes/java/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.for.scope rename to resources/fixtures/scopes/java/statement/statement.for.scope diff --git a/data/fixtures/scopes/java/statement/statement.foreach.scope b/resources/fixtures/scopes/java/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.foreach.scope rename to resources/fixtures/scopes/java/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/java/statement/statement.functionCall.scope b/resources/fixtures/scopes/java/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.functionCall.scope rename to resources/fixtures/scopes/java/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/java/statement/statement.if.scope b/resources/fixtures/scopes/java/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.if.scope rename to resources/fixtures/scopes/java/statement/statement.if.scope diff --git a/data/fixtures/scopes/java/statement/statement.import.scope b/resources/fixtures/scopes/java/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.import.scope rename to resources/fixtures/scopes/java/statement/statement.import.scope diff --git a/data/fixtures/scopes/java/statement/statement.interface.scope b/resources/fixtures/scopes/java/statement/statement.interface.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.interface.scope rename to resources/fixtures/scopes/java/statement/statement.interface.scope diff --git a/data/fixtures/scopes/java/statement/statement.interface2.scope b/resources/fixtures/scopes/java/statement/statement.interface2.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.interface2.scope rename to resources/fixtures/scopes/java/statement/statement.interface2.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.block.scope b/resources/fixtures/scopes/java/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/java/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/java/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/java/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.class.scope b/resources/fixtures/scopes/java/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.class2.scope b/resources/fixtures/scopes/java/statement/statement.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.class2.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.class2.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.document.scope b/resources/fixtures/scopes/java/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/java/statement/statement.iteration.interface.scope b/resources/fixtures/scopes/java/statement/statement.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.iteration.interface.scope rename to resources/fixtures/scopes/java/statement/statement.iteration.interface.scope diff --git a/data/fixtures/scopes/java/statement/statement.method.interface.scope b/resources/fixtures/scopes/java/statement/statement.method.interface.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.method.interface.scope rename to resources/fixtures/scopes/java/statement/statement.method.interface.scope diff --git a/data/fixtures/scopes/java/statement/statement.method.scope b/resources/fixtures/scopes/java/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.method.scope rename to resources/fixtures/scopes/java/statement/statement.method.scope diff --git a/data/fixtures/scopes/java/statement/statement.method2.scope b/resources/fixtures/scopes/java/statement/statement.method2.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.method2.scope rename to resources/fixtures/scopes/java/statement/statement.method2.scope diff --git a/data/fixtures/scopes/java/statement/statement.misc.scope b/resources/fixtures/scopes/java/statement/statement.misc.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.misc.scope rename to resources/fixtures/scopes/java/statement/statement.misc.scope diff --git a/data/fixtures/scopes/java/statement/statement.package.scope b/resources/fixtures/scopes/java/statement/statement.package.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.package.scope rename to resources/fixtures/scopes/java/statement/statement.package.scope diff --git a/data/fixtures/scopes/java/statement/statement.resource.scope b/resources/fixtures/scopes/java/statement/statement.resource.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.resource.scope rename to resources/fixtures/scopes/java/statement/statement.resource.scope diff --git a/data/fixtures/scopes/java/statement/statement.return.scope b/resources/fixtures/scopes/java/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.return.scope rename to resources/fixtures/scopes/java/statement/statement.return.scope diff --git a/data/fixtures/scopes/java/statement/statement.static.scope b/resources/fixtures/scopes/java/statement/statement.static.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.static.scope rename to resources/fixtures/scopes/java/statement/statement.static.scope diff --git a/data/fixtures/scopes/java/statement/statement.switch.scope b/resources/fixtures/scopes/java/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.switch.scope rename to resources/fixtures/scopes/java/statement/statement.switch.scope diff --git a/data/fixtures/scopes/java/statement/statement.throw.scope b/resources/fixtures/scopes/java/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.throw.scope rename to resources/fixtures/scopes/java/statement/statement.throw.scope diff --git a/data/fixtures/scopes/java/statement/statement.try.scope b/resources/fixtures/scopes/java/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.try.scope rename to resources/fixtures/scopes/java/statement/statement.try.scope diff --git a/data/fixtures/scopes/java/statement/statement.update.scope b/resources/fixtures/scopes/java/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.update.scope rename to resources/fixtures/scopes/java/statement/statement.update.scope diff --git a/data/fixtures/scopes/java/statement/statement.update2.scope b/resources/fixtures/scopes/java/statement/statement.update2.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.update2.scope rename to resources/fixtures/scopes/java/statement/statement.update2.scope diff --git a/data/fixtures/scopes/java/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/java/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/java/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/java/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/java/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/java/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/java/statement/statement.while.scope b/resources/fixtures/scopes/java/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.while.scope rename to resources/fixtures/scopes/java/statement/statement.while.scope diff --git a/data/fixtures/scopes/java/statement/statement.yield.scope b/resources/fixtures/scopes/java/statement/statement.yield.scope similarity index 100% rename from data/fixtures/scopes/java/statement/statement.yield.scope rename to resources/fixtures/scopes/java/statement/statement.yield.scope diff --git a/data/fixtures/scopes/java/string.multiLine.scope b/resources/fixtures/scopes/java/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/string.multiLine.scope rename to resources/fixtures/scopes/java/string.multiLine.scope diff --git a/data/fixtures/scopes/java/string.singleLine.scope b/resources/fixtures/scopes/java/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/string.singleLine.scope rename to resources/fixtures/scopes/java/string.singleLine.scope diff --git a/data/fixtures/scopes/java/textFragment.comment.block.scope b/resources/fixtures/scopes/java/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/java/textFragment.comment.block.scope rename to resources/fixtures/scopes/java/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/java/textFragment.comment.block2.scope b/resources/fixtures/scopes/java/textFragment.comment.block2.scope similarity index 100% rename from data/fixtures/scopes/java/textFragment.comment.block2.scope rename to resources/fixtures/scopes/java/textFragment.comment.block2.scope diff --git a/data/fixtures/scopes/java/textFragment.comment.line.scope b/resources/fixtures/scopes/java/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/java/textFragment.comment.line.scope rename to resources/fixtures/scopes/java/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/java/textFragment.string.multiLine.scope b/resources/fixtures/scopes/java/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/java/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/java/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/java/textFragment.string.singleLine.scope b/resources/fixtures/scopes/java/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/java/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/java/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/java/type/type.argument.catch.scope b/resources/fixtures/scopes/java/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.argument.catch.scope rename to resources/fixtures/scopes/java/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/java/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/java/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/java/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/java/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/java/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/java/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/java/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/java/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/java/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/java/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/java/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/java/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/java/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/java/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/java/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/java/type/type.argument.formal.method.scope b/resources/fixtures/scopes/java/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/java/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/java/type/type.cast.scope b/resources/fixtures/scopes/java/type/type.cast.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.cast.scope rename to resources/fixtures/scopes/java/type/type.cast.scope diff --git a/data/fixtures/scopes/java/type/type.class.scope b/resources/fixtures/scopes/java/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.class.scope rename to resources/fixtures/scopes/java/type/type.class.scope diff --git a/data/fixtures/scopes/java/type/type.constant.scope b/resources/fixtures/scopes/java/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.constant.scope rename to resources/fixtures/scopes/java/type/type.constant.scope diff --git a/data/fixtures/scopes/java/type/type.enum.scope b/resources/fixtures/scopes/java/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.enum.scope rename to resources/fixtures/scopes/java/type/type.enum.scope diff --git a/data/fixtures/scopes/java/type/type.field.class.scope b/resources/fixtures/scopes/java/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.field.class.scope rename to resources/fixtures/scopes/java/type/type.field.class.scope diff --git a/data/fixtures/scopes/java/type/type.field.interface.scope b/resources/fixtures/scopes/java/type/type.field.interface.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.field.interface.scope rename to resources/fixtures/scopes/java/type/type.field.interface.scope diff --git a/data/fixtures/scopes/java/type/type.foreach.scope b/resources/fixtures/scopes/java/type/type.foreach.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.foreach.scope rename to resources/fixtures/scopes/java/type/type.foreach.scope diff --git a/data/fixtures/scopes/java/type/type.interface.scope b/resources/fixtures/scopes/java/type/type.interface.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.interface.scope rename to resources/fixtures/scopes/java/type/type.interface.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.block.scope b/resources/fixtures/scopes/java/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.block.scope rename to resources/fixtures/scopes/java/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.block2.scope b/resources/fixtures/scopes/java/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.block2.scope rename to resources/fixtures/scopes/java/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.block3.scope b/resources/fixtures/scopes/java/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.block3.scope rename to resources/fixtures/scopes/java/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.block4.scope b/resources/fixtures/scopes/java/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.block4.scope rename to resources/fixtures/scopes/java/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.class.scope b/resources/fixtures/scopes/java/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.class.scope rename to resources/fixtures/scopes/java/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.class2.scope b/resources/fixtures/scopes/java/type/type.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.class2.scope rename to resources/fixtures/scopes/java/type/type.iteration.class2.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.document.scope b/resources/fixtures/scopes/java/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.document.scope rename to resources/fixtures/scopes/java/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/java/type/type.iteration.interface.scope b/resources/fixtures/scopes/java/type/type.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.iteration.interface.scope rename to resources/fixtures/scopes/java/type/type.iteration.interface.scope diff --git a/data/fixtures/scopes/java/type/type.resource.scope b/resources/fixtures/scopes/java/type/type.resource.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.resource.scope rename to resources/fixtures/scopes/java/type/type.resource.scope diff --git a/data/fixtures/scopes/java/type/type.return.method.scope b/resources/fixtures/scopes/java/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.return.method.scope rename to resources/fixtures/scopes/java/type/type.return.method.scope diff --git a/data/fixtures/scopes/java/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/java/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/java/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/java/type/type.typeArgument.scope b/resources/fixtures/scopes/java/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.typeArgument.scope rename to resources/fixtures/scopes/java/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/java/type/type.variable.initialized.scope b/resources/fixtures/scopes/java/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.variable.initialized.scope rename to resources/fixtures/scopes/java/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/java/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/java/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/java/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/java/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/java/value/value.assignment.compound.scope b/resources/fixtures/scopes/java/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.assignment.compound.scope rename to resources/fixtures/scopes/java/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/java/value/value.assignment.scope b/resources/fixtures/scopes/java/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.assignment.scope rename to resources/fixtures/scopes/java/value/value.assignment.scope diff --git a/data/fixtures/scopes/java/value/value.assignment2.scope b/resources/fixtures/scopes/java/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.assignment2.scope rename to resources/fixtures/scopes/java/value/value.assignment2.scope diff --git a/data/fixtures/scopes/java/value/value.constant.scope b/resources/fixtures/scopes/java/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.constant.scope rename to resources/fixtures/scopes/java/value/value.constant.scope diff --git a/data/fixtures/scopes/java/value/value.field.class.scope b/resources/fixtures/scopes/java/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.field.class.scope rename to resources/fixtures/scopes/java/value/value.field.class.scope diff --git a/data/fixtures/scopes/java/value/value.field.interface.scope b/resources/fixtures/scopes/java/value/value.field.interface.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.field.interface.scope rename to resources/fixtures/scopes/java/value/value.field.interface.scope diff --git a/data/fixtures/scopes/java/value/value.foreach.scope b/resources/fixtures/scopes/java/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.foreach.scope rename to resources/fixtures/scopes/java/value/value.foreach.scope diff --git a/data/fixtures/scopes/java/value/value.iteration.block.scope b/resources/fixtures/scopes/java/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.iteration.block.scope rename to resources/fixtures/scopes/java/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/java/value/value.iteration.block2.scope b/resources/fixtures/scopes/java/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.iteration.block2.scope rename to resources/fixtures/scopes/java/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/java/value/value.iteration.block3.scope b/resources/fixtures/scopes/java/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.iteration.block3.scope rename to resources/fixtures/scopes/java/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/java/value/value.iteration.block4.scope b/resources/fixtures/scopes/java/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.iteration.block4.scope rename to resources/fixtures/scopes/java/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/java/value/value.iteration.class.scope b/resources/fixtures/scopes/java/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.iteration.class.scope rename to resources/fixtures/scopes/java/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/java/value/value.iteration.class2.scope b/resources/fixtures/scopes/java/value/value.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.iteration.class2.scope rename to resources/fixtures/scopes/java/value/value.iteration.class2.scope diff --git a/data/fixtures/scopes/java/value/value.iteration.document.scope b/resources/fixtures/scopes/java/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.iteration.document.scope rename to resources/fixtures/scopes/java/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/java/value/value.resource.scope b/resources/fixtures/scopes/java/value/value.resource.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.resource.scope rename to resources/fixtures/scopes/java/value/value.resource.scope diff --git a/data/fixtures/scopes/java/value/value.return.lambda.scope b/resources/fixtures/scopes/java/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.return.lambda.scope rename to resources/fixtures/scopes/java/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/java/value/value.return.scope b/resources/fixtures/scopes/java/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.return.scope rename to resources/fixtures/scopes/java/value/value.return.scope diff --git a/data/fixtures/scopes/java/value/value.switch.scope b/resources/fixtures/scopes/java/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.switch.scope rename to resources/fixtures/scopes/java/value/value.switch.scope diff --git a/data/fixtures/scopes/java/value/value.throw.scope b/resources/fixtures/scopes/java/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.throw.scope rename to resources/fixtures/scopes/java/value/value.throw.scope diff --git a/data/fixtures/scopes/java/value/value.variable.scope b/resources/fixtures/scopes/java/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.variable.scope rename to resources/fixtures/scopes/java/value/value.variable.scope diff --git a/data/fixtures/scopes/java/value/value.yield.scope b/resources/fixtures/scopes/java/value/value.yield.scope similarity index 100% rename from data/fixtures/scopes/java/value/value.yield.scope rename to resources/fixtures/scopes/java/value/value.yield.scope diff --git a/data/fixtures/scopes/javascript.core/anonymousFunction.scope b/resources/fixtures/scopes/javascript.core/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/anonymousFunction.scope rename to resources/fixtures/scopes/javascript.core/anonymousFunction.scope diff --git a/data/fixtures/scopes/javascript.core/anonymousFunction2.scope b/resources/fixtures/scopes/javascript.core/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/anonymousFunction2.scope rename to resources/fixtures/scopes/javascript.core/anonymousFunction2.scope diff --git a/data/fixtures/scopes/javascript.core/anonymousFunction3.scope b/resources/fixtures/scopes/javascript.core/anonymousFunction3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/anonymousFunction3.scope rename to resources/fixtures/scopes/javascript.core/anonymousFunction3.scope diff --git a/data/fixtures/scopes/javascript.core/anonymousFunction4.scope b/resources/fixtures/scopes/javascript.core/anonymousFunction4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/anonymousFunction4.scope rename to resources/fixtures/scopes/javascript.core/anonymousFunction4.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.catch.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration10.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration10.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration10.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration10.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration11.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration11.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration11.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration11.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration12.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration12.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration12.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration12.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration13.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration13.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration13.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration13.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration14.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration14.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration14.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration14.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration15.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration15.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration15.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration15.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration2.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration2.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration2.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration3.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration3.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration3.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration4.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration4.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration4.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration5.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration5.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration5.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration6.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration6.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration6.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration7.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration7.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration7.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration8.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration8.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration8.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.iteration9.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration9.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.iteration9.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.iteration9.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration2.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration2.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.iteration2.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine2.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine2.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.lambda.singleLine2.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration2.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration2.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration2.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration3.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration3.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration3.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration4.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration4.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration4.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration5.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration5.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration5.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration6.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration6.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration6.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration7.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration7.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration7.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration8.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration8.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.iteration8.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/javascript.core/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty10.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty10.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty10.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty10.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty11.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty11.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty11.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty11.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty12.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty12.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty12.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty12.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty13.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty13.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty13.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty13.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty14.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty14.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty14.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty14.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty15.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty15.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty15.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty15.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty2.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty2.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty2.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty3.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty3.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty3.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty4.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty4.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty4.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty5.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty5.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty5.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty6.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty6.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty6.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty7.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty7.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty7.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty8.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty8.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty8.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty9.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty9.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty9.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.empty9.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty2.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty2.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.empty2.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine2.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine2.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.multiLine2.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine2.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine2.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.lambda.singleLine2.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty2.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty2.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty2.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty3.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty3.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty3.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty4.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty4.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty4.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty5.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty5.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty5.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty6.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty6.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty6.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty7.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty7.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty7.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty8.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty8.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.empty8.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/javascript.core/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/javascript.core/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.if.else.scope b/resources/fixtures/scopes/javascript.core/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.if.else.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.if.iteration.scope b/resources/fixtures/scopes/javascript.core/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.if.scope b/resources/fixtures/scopes/javascript.core/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.if.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.if.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/javascript.core/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.switchCase.scope b/resources/fixtures/scopes/javascript.core/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.switchCase.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.switchCase2.scope b/resources/fixtures/scopes/javascript.core/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/javascript.core/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.ternary.scope b/resources/fixtures/scopes/javascript.core/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.ternary.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.try.iteration.scope b/resources/fixtures/scopes/javascript.core/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/branch/branch.try.scope b/resources/fixtures/scopes/javascript.core/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/branch/branch.try.scope rename to resources/fixtures/scopes/javascript.core/branch/branch.try.scope diff --git a/data/fixtures/scopes/javascript.core/class.iteration.document.scope b/resources/fixtures/scopes/javascript.core/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/class.iteration.document.scope rename to resources/fixtures/scopes/javascript.core/class.iteration.document.scope diff --git a/data/fixtures/scopes/javascript.core/class.scope b/resources/fixtures/scopes/javascript.core/class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/class.scope rename to resources/fixtures/scopes/javascript.core/class.scope diff --git a/data/fixtures/scopes/javascript.core/class2.scope b/resources/fixtures/scopes/javascript.core/class2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/class2.scope rename to resources/fixtures/scopes/javascript.core/class2.scope diff --git a/data/fixtures/scopes/javascript.core/class3.scope b/resources/fixtures/scopes/javascript.core/class3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/class3.scope rename to resources/fixtures/scopes/javascript.core/class3.scope diff --git a/data/fixtures/scopes/javascript.core/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/javascript.core/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/javascript.core/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/javascript.core/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/javascript.core/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/javascript.core/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/javascript.core/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/comment.block.scope b/resources/fixtures/scopes/javascript.core/comment.block.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/comment.block.scope rename to resources/fixtures/scopes/javascript.core/comment.block.scope diff --git a/data/fixtures/scopes/javascript.core/comment.block2.scope b/resources/fixtures/scopes/javascript.core/comment.block2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/comment.block2.scope rename to resources/fixtures/scopes/javascript.core/comment.block2.scope diff --git a/data/fixtures/scopes/javascript.core/comment.line.scope b/resources/fixtures/scopes/javascript.core/comment.line.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/comment.line.scope rename to resources/fixtures/scopes/javascript.core/comment.line.scope diff --git a/data/fixtures/scopes/javascript.core/condition/condition.doWhile.scope b/resources/fixtures/scopes/javascript.core/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/condition/condition.doWhile.scope rename to resources/fixtures/scopes/javascript.core/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/javascript.core/condition/condition.for.scope b/resources/fixtures/scopes/javascript.core/condition/condition.for.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/condition/condition.for.scope rename to resources/fixtures/scopes/javascript.core/condition/condition.for.scope diff --git a/data/fixtures/scopes/javascript.core/condition/condition.if.scope b/resources/fixtures/scopes/javascript.core/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/condition/condition.if.scope rename to resources/fixtures/scopes/javascript.core/condition/condition.if.scope diff --git a/data/fixtures/scopes/javascript.core/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/javascript.core/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/javascript.core/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/condition/condition.switchCase.scope b/resources/fixtures/scopes/javascript.core/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/condition/condition.switchCase.scope rename to resources/fixtures/scopes/javascript.core/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/javascript.core/condition/condition.ternary.scope b/resources/fixtures/scopes/javascript.core/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/condition/condition.ternary.scope rename to resources/fixtures/scopes/javascript.core/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/javascript.core/condition/condition.while.scope b/resources/fixtures/scopes/javascript.core/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/condition/condition.while.scope rename to resources/fixtures/scopes/javascript.core/condition/condition.while.scope diff --git a/data/fixtures/scopes/javascript.core/disqualifyDelimiter.scope b/resources/fixtures/scopes/javascript.core/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/disqualifyDelimiter.scope rename to resources/fixtures/scopes/javascript.core/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/javascript.core/fieldAccess.scope b/resources/fixtures/scopes/javascript.core/fieldAccess.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/fieldAccess.scope rename to resources/fixtures/scopes/javascript.core/fieldAccess.scope diff --git a/data/fixtures/scopes/javascript.core/functionCall.chain.scope b/resources/fixtures/scopes/javascript.core/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCall.chain.scope rename to resources/fixtures/scopes/javascript.core/functionCall.chain.scope diff --git a/data/fixtures/scopes/javascript.core/functionCall.constructor.scope b/resources/fixtures/scopes/javascript.core/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCall.constructor.scope rename to resources/fixtures/scopes/javascript.core/functionCall.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/functionCall.method.scope b/resources/fixtures/scopes/javascript.core/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCall.method.scope rename to resources/fixtures/scopes/javascript.core/functionCall.method.scope diff --git a/data/fixtures/scopes/javascript.core/functionCall.scope b/resources/fixtures/scopes/javascript.core/functionCall.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCall.scope rename to resources/fixtures/scopes/javascript.core/functionCall.scope diff --git a/data/fixtures/scopes/javascript.core/functionCallee.chain.scope b/resources/fixtures/scopes/javascript.core/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCallee.chain.scope rename to resources/fixtures/scopes/javascript.core/functionCallee.chain.scope diff --git a/data/fixtures/scopes/javascript.core/functionCallee.constructor.scope b/resources/fixtures/scopes/javascript.core/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCallee.constructor.scope rename to resources/fixtures/scopes/javascript.core/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/functionCallee.method.scope b/resources/fixtures/scopes/javascript.core/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCallee.method.scope rename to resources/fixtures/scopes/javascript.core/functionCallee.method.scope diff --git a/data/fixtures/scopes/javascript.core/functionCallee.scope b/resources/fixtures/scopes/javascript.core/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/functionCallee.scope rename to resources/fixtures/scopes/javascript.core/functionCallee.scope diff --git a/data/fixtures/scopes/javascript.core/ifStatement.scope b/resources/fixtures/scopes/javascript.core/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/ifStatement.scope rename to resources/fixtures/scopes/javascript.core/ifStatement.scope diff --git a/data/fixtures/scopes/javascript.core/index.json b/resources/fixtures/scopes/javascript.core/index.json similarity index 100% rename from data/fixtures/scopes/javascript.core/index.json rename to resources/fixtures/scopes/javascript.core/index.json diff --git a/data/fixtures/scopes/javascript.core/interior/interior.class.scope b/resources/fixtures/scopes/javascript.core/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.class.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.class.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.constructor.scope b/resources/fixtures/scopes/javascript.core/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.constructor.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.doWhile.scope b/resources/fixtures/scopes/javascript.core/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.doWhile.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.for.scope b/resources/fixtures/scopes/javascript.core/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.for.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.for.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.foreach.scope b/resources/fixtures/scopes/javascript.core/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.foreach.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.foreach2.scope b/resources/fixtures/scopes/javascript.core/interior/interior.foreach2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.foreach2.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.foreach2.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.function.scope b/resources/fixtures/scopes/javascript.core/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.function.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.function.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.if.scope b/resources/fixtures/scopes/javascript.core/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.if.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.if.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.lambda.scope b/resources/fixtures/scopes/javascript.core/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.lambda.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.method.scope b/resources/fixtures/scopes/javascript.core/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.method.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.method.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.static.scope b/resources/fixtures/scopes/javascript.core/interior/interior.static.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.static.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.static.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.switch.scope b/resources/fixtures/scopes/javascript.core/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.switch.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.switch.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.switchCase.scope b/resources/fixtures/scopes/javascript.core/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.switchCase.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.switchCase2.scope b/resources/fixtures/scopes/javascript.core/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.try.scope b/resources/fixtures/scopes/javascript.core/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.try.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.try.scope diff --git a/data/fixtures/scopes/javascript.core/interior/interior.while.scope b/resources/fixtures/scopes/javascript.core/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/interior/interior.while.scope rename to resources/fixtures/scopes/javascript.core/interior/interior.while.scope diff --git a/data/fixtures/scopes/javascript.core/key.mapPair.iteration.scope b/resources/fixtures/scopes/javascript.core/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/key.mapPair.iteration.scope rename to resources/fixtures/scopes/javascript.core/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/key.mapPair.iteration2.scope b/resources/fixtures/scopes/javascript.core/key.mapPair.iteration2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/key.mapPair.iteration2.scope rename to resources/fixtures/scopes/javascript.core/key.mapPair.iteration2.scope diff --git a/data/fixtures/scopes/javascript.core/key.mapPair.scope b/resources/fixtures/scopes/javascript.core/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/key.mapPair.scope rename to resources/fixtures/scopes/javascript.core/key.mapPair.scope diff --git a/data/fixtures/scopes/javascript.core/key.mapPair2.scope b/resources/fixtures/scopes/javascript.core/key.mapPair2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/key.mapPair2.scope rename to resources/fixtures/scopes/javascript.core/key.mapPair2.scope diff --git a/data/fixtures/scopes/javascript.core/list.scope b/resources/fixtures/scopes/javascript.core/list.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/list.scope rename to resources/fixtures/scopes/javascript.core/list.scope diff --git a/data/fixtures/scopes/javascript.core/map.scope b/resources/fixtures/scopes/javascript.core/map.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/map.scope rename to resources/fixtures/scopes/javascript.core/map.scope diff --git a/data/fixtures/scopes/javascript.core/map2.scope b/resources/fixtures/scopes/javascript.core/map2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/map2.scope rename to resources/fixtures/scopes/javascript.core/map2.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.catch.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.catch.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.method.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.argument.formal2.scope b/resources/fixtures/scopes/javascript.core/name/name.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.argument.formal2.scope rename to resources/fixtures/scopes/javascript.core/name/name.argument.formal2.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.assignment.compound.scope b/resources/fixtures/scopes/javascript.core/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.assignment.compound.scope rename to resources/fixtures/scopes/javascript.core/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.assignment.destructuring.scope b/resources/fixtures/scopes/javascript.core/name/name.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.assignment.destructuring.scope rename to resources/fixtures/scopes/javascript.core/name/name.assignment.destructuring.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.assignment.scope b/resources/fixtures/scopes/javascript.core/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.assignment.scope rename to resources/fixtures/scopes/javascript.core/name/name.assignment.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.class.scope b/resources/fixtures/scopes/javascript.core/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.class.scope rename to resources/fixtures/scopes/javascript.core/name/name.class.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.class2.scope b/resources/fixtures/scopes/javascript.core/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.class2.scope rename to resources/fixtures/scopes/javascript.core/name/name.class2.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.class3.scope b/resources/fixtures/scopes/javascript.core/name/name.class3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.class3.scope rename to resources/fixtures/scopes/javascript.core/name/name.class3.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.constant.scope b/resources/fixtures/scopes/javascript.core/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.constant.scope rename to resources/fixtures/scopes/javascript.core/name/name.constant.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.constructor.scope b/resources/fixtures/scopes/javascript.core/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.constructor.scope rename to resources/fixtures/scopes/javascript.core/name/name.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.field.class.scope b/resources/fixtures/scopes/javascript.core/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.field.class.scope rename to resources/fixtures/scopes/javascript.core/name/name.field.class.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.foreach.scope b/resources/fixtures/scopes/javascript.core/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.foreach.scope rename to resources/fixtures/scopes/javascript.core/name/name.foreach.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.foreach2.scope b/resources/fixtures/scopes/javascript.core/name/name.foreach2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.foreach2.scope rename to resources/fixtures/scopes/javascript.core/name/name.foreach2.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function.scope b/resources/fixtures/scopes/javascript.core/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function.scope rename to resources/fixtures/scopes/javascript.core/name/name.function.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function10.scope b/resources/fixtures/scopes/javascript.core/name/name.function10.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function10.scope rename to resources/fixtures/scopes/javascript.core/name/name.function10.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function11.scope b/resources/fixtures/scopes/javascript.core/name/name.function11.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function11.scope rename to resources/fixtures/scopes/javascript.core/name/name.function11.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function12.scope b/resources/fixtures/scopes/javascript.core/name/name.function12.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function12.scope rename to resources/fixtures/scopes/javascript.core/name/name.function12.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function2.scope b/resources/fixtures/scopes/javascript.core/name/name.function2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function2.scope rename to resources/fixtures/scopes/javascript.core/name/name.function2.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function3.scope b/resources/fixtures/scopes/javascript.core/name/name.function3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function3.scope rename to resources/fixtures/scopes/javascript.core/name/name.function3.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function4.scope b/resources/fixtures/scopes/javascript.core/name/name.function4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function4.scope rename to resources/fixtures/scopes/javascript.core/name/name.function4.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function5.scope b/resources/fixtures/scopes/javascript.core/name/name.function5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function5.scope rename to resources/fixtures/scopes/javascript.core/name/name.function5.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function6.scope b/resources/fixtures/scopes/javascript.core/name/name.function6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function6.scope rename to resources/fixtures/scopes/javascript.core/name/name.function6.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function7.scope b/resources/fixtures/scopes/javascript.core/name/name.function7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function7.scope rename to resources/fixtures/scopes/javascript.core/name/name.function7.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function8.scope b/resources/fixtures/scopes/javascript.core/name/name.function8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function8.scope rename to resources/fixtures/scopes/javascript.core/name/name.function8.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.function9.scope b/resources/fixtures/scopes/javascript.core/name/name.function9.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.function9.scope rename to resources/fixtures/scopes/javascript.core/name/name.function9.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.iteration.block.scope b/resources/fixtures/scopes/javascript.core/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.iteration.block.scope rename to resources/fixtures/scopes/javascript.core/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.iteration.block2.scope b/resources/fixtures/scopes/javascript.core/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.iteration.block2.scope rename to resources/fixtures/scopes/javascript.core/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.iteration.block3.scope b/resources/fixtures/scopes/javascript.core/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.iteration.block3.scope rename to resources/fixtures/scopes/javascript.core/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.iteration.block4.scope b/resources/fixtures/scopes/javascript.core/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.iteration.block4.scope rename to resources/fixtures/scopes/javascript.core/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.iteration.class.scope b/resources/fixtures/scopes/javascript.core/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.iteration.class.scope rename to resources/fixtures/scopes/javascript.core/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.iteration.document.scope b/resources/fixtures/scopes/javascript.core/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.iteration.document.scope rename to resources/fixtures/scopes/javascript.core/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method.scope b/resources/fixtures/scopes/javascript.core/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method.scope rename to resources/fixtures/scopes/javascript.core/name/name.method.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method2.scope b/resources/fixtures/scopes/javascript.core/name/name.method2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method2.scope rename to resources/fixtures/scopes/javascript.core/name/name.method2.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method3.scope b/resources/fixtures/scopes/javascript.core/name/name.method3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method3.scope rename to resources/fixtures/scopes/javascript.core/name/name.method3.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method4.scope b/resources/fixtures/scopes/javascript.core/name/name.method4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method4.scope rename to resources/fixtures/scopes/javascript.core/name/name.method4.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method5.scope b/resources/fixtures/scopes/javascript.core/name/name.method5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method5.scope rename to resources/fixtures/scopes/javascript.core/name/name.method5.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method6.scope b/resources/fixtures/scopes/javascript.core/name/name.method6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method6.scope rename to resources/fixtures/scopes/javascript.core/name/name.method6.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method7.scope b/resources/fixtures/scopes/javascript.core/name/name.method7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method7.scope rename to resources/fixtures/scopes/javascript.core/name/name.method7.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.method8.scope b/resources/fixtures/scopes/javascript.core/name/name.method8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.method8.scope rename to resources/fixtures/scopes/javascript.core/name/name.method8.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.variable.destructuring.scope b/resources/fixtures/scopes/javascript.core/name/name.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.variable.destructuring.scope rename to resources/fixtures/scopes/javascript.core/name/name.variable.destructuring.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.variable.initialized.scope b/resources/fixtures/scopes/javascript.core/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.variable.initialized.scope rename to resources/fixtures/scopes/javascript.core/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/javascript.core/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/javascript.core/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/javascript.core/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.constructor.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.constructor.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.class.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.document.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method2.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method2.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method2.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method3.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method3.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method3.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method4.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method4.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method4.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method5.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method5.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method5.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method6.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method6.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method6.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method7.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method7.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method7.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method8.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.method8.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.method8.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction10.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction10.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction10.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction10.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction11.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction11.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction11.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction11.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction12.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction12.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction12.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction12.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction13.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction13.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction13.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction13.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction14.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction14.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction14.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction14.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction15.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction15.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction15.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction15.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction2.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction2.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction2.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction3.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction3.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction3.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction4.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction4.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction4.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction5.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction5.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction5.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction6.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction6.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction6.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction7.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction7.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction7.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction8.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction8.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction8.scope diff --git a/data/fixtures/scopes/javascript.core/namedFunction/namedFunction9.scope b/resources/fixtures/scopes/javascript.core/namedFunction/namedFunction9.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/namedFunction/namedFunction9.scope rename to resources/fixtures/scopes/javascript.core/namedFunction/namedFunction9.scope diff --git a/data/fixtures/scopes/javascript.core/pairDelimiter.scope b/resources/fixtures/scopes/javascript.core/pairDelimiter.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/pairDelimiter.scope rename to resources/fixtures/scopes/javascript.core/pairDelimiter.scope diff --git a/data/fixtures/scopes/javascript.core/regularExpression.scope b/resources/fixtures/scopes/javascript.core/regularExpression.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/regularExpression.scope rename to resources/fixtures/scopes/javascript.core/regularExpression.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/javascript.core/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.assignment.destructuring.scope b/resources/fixtures/scopes/javascript.core/statement/statement.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.assignment.destructuring.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.assignment.destructuring.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.assignment.scope b/resources/fixtures/scopes/javascript.core/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.assignment.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.break.scope b/resources/fixtures/scopes/javascript.core/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.break.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.break.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.class.scope b/resources/fixtures/scopes/javascript.core/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.class.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.class.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.class2.scope b/resources/fixtures/scopes/javascript.core/statement/statement.class2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.class2.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.class2.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.class3.scope b/resources/fixtures/scopes/javascript.core/statement/statement.class3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.class3.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.class3.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.constant.scope b/resources/fixtures/scopes/javascript.core/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.constant.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.constant.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.constructor.scope b/resources/fixtures/scopes/javascript.core/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.constructor.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.continue.scope b/resources/fixtures/scopes/javascript.core/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.continue.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.continue.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.doWhile.scope b/resources/fixtures/scopes/javascript.core/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.doWhile.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.field.class.scope b/resources/fixtures/scopes/javascript.core/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.field.class.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.for.scope b/resources/fixtures/scopes/javascript.core/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.for.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.for.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.foreach.scope b/resources/fixtures/scopes/javascript.core/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.foreach.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.foreach2.scope b/resources/fixtures/scopes/javascript.core/statement/statement.foreach2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.foreach2.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.foreach2.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function10.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function10.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function10.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function10.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function11.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function11.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function11.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function11.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function12.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function12.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function12.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function12.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function13.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function13.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function13.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function13.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function14.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function14.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function14.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function14.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function15.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function15.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function15.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function15.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function2.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function2.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function2.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function3.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function3.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function3.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function4.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function4.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function4.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function5.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function5.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function5.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function6.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function6.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function6.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function7.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function7.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function7.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function8.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function8.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function8.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.function9.scope b/resources/fixtures/scopes/javascript.core/statement/statement.function9.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.function9.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.function9.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.functionCall.scope b/resources/fixtures/scopes/javascript.core/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.functionCall.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.if.scope b/resources/fixtures/scopes/javascript.core/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.if.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.if.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.import.scope b/resources/fixtures/scopes/javascript.core/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.import.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.import.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.iteration.block.scope b/resources/fixtures/scopes/javascript.core/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/javascript.core/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/javascript.core/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/javascript.core/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.iteration.class.scope b/resources/fixtures/scopes/javascript.core/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.iteration.document.scope b/resources/fixtures/scopes/javascript.core/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method2.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method2.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method2.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method3.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method3.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method3.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method4.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method4.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method4.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method4.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method5.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method5.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method5.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method5.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method6.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method6.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method6.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method6.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method7.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method7.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method7.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method7.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.method8.scope b/resources/fixtures/scopes/javascript.core/statement/statement.method8.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.method8.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.method8.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.return.scope b/resources/fixtures/scopes/javascript.core/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.return.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.return.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.static.scope b/resources/fixtures/scopes/javascript.core/statement/statement.static.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.static.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.static.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.switch.scope b/resources/fixtures/scopes/javascript.core/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.switch.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.switch.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.throw.scope b/resources/fixtures/scopes/javascript.core/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.throw.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.throw.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.try.scope b/resources/fixtures/scopes/javascript.core/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.try.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.try.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.update.scope b/resources/fixtures/scopes/javascript.core/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.update.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.update.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.update2.scope b/resources/fixtures/scopes/javascript.core/statement/statement.update2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.update2.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.update2.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.variable.destructuring.scope b/resources/fixtures/scopes/javascript.core/statement/statement.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.variable.destructuring.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.variable.destructuring.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/javascript.core/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/javascript.core/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.while.scope b/resources/fixtures/scopes/javascript.core/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.while.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.while.scope diff --git a/data/fixtures/scopes/javascript.core/statement/statement.yield.scope b/resources/fixtures/scopes/javascript.core/statement/statement.yield.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/statement/statement.yield.scope rename to resources/fixtures/scopes/javascript.core/statement/statement.yield.scope diff --git a/data/fixtures/scopes/javascript.core/string.multiLine.scope b/resources/fixtures/scopes/javascript.core/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/string.multiLine.scope rename to resources/fixtures/scopes/javascript.core/string.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/string.singleLine.scope b/resources/fixtures/scopes/javascript.core/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/string.singleLine.scope rename to resources/fixtures/scopes/javascript.core/string.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block.scope b/resources/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block.scope rename to resources/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope b/resources/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope rename to resources/fixtures/scopes/javascript.core/textFragment/textFragment.comment.block2.scope diff --git a/data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.line.scope b/resources/fixtures/scopes/javascript.core/textFragment/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/textFragment/textFragment.comment.line.scope rename to resources/fixtures/scopes/javascript.core/textFragment/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/javascript.core/textFragment/textFragment.string.multiLine.scope b/resources/fixtures/scopes/javascript.core/textFragment/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/textFragment/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/javascript.core/textFragment/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/javascript.core/textFragment/textFragment.string.singleLine.scope b/resources/fixtures/scopes/javascript.core/textFragment/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/textFragment/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/javascript.core/textFragment/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.method.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.argument.formal.scope b/resources/fixtures/scopes/javascript.core/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.argument.formal.scope rename to resources/fixtures/scopes/javascript.core/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.assignment.compound.scope b/resources/fixtures/scopes/javascript.core/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.assignment.compound.scope rename to resources/fixtures/scopes/javascript.core/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.assignment.destructuring.scope b/resources/fixtures/scopes/javascript.core/value/value.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.assignment.destructuring.scope rename to resources/fixtures/scopes/javascript.core/value/value.assignment.destructuring.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.assignment.scope b/resources/fixtures/scopes/javascript.core/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.assignment.scope rename to resources/fixtures/scopes/javascript.core/value/value.assignment.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.assignment2.scope b/resources/fixtures/scopes/javascript.core/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.assignment2.scope rename to resources/fixtures/scopes/javascript.core/value/value.assignment2.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.constant.scope b/resources/fixtures/scopes/javascript.core/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.constant.scope rename to resources/fixtures/scopes/javascript.core/value/value.constant.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.field.class.scope b/resources/fixtures/scopes/javascript.core/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.field.class.scope rename to resources/fixtures/scopes/javascript.core/value/value.field.class.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.foreach.scope b/resources/fixtures/scopes/javascript.core/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.foreach.scope rename to resources/fixtures/scopes/javascript.core/value/value.foreach.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.foreach2.scope b/resources/fixtures/scopes/javascript.core/value/value.foreach2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.foreach2.scope rename to resources/fixtures/scopes/javascript.core/value/value.foreach2.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.iteration.block.scope b/resources/fixtures/scopes/javascript.core/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.iteration.block.scope rename to resources/fixtures/scopes/javascript.core/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.iteration.block2.scope b/resources/fixtures/scopes/javascript.core/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.iteration.block2.scope rename to resources/fixtures/scopes/javascript.core/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.iteration.block3.scope b/resources/fixtures/scopes/javascript.core/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.iteration.block3.scope rename to resources/fixtures/scopes/javascript.core/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.iteration.class.scope b/resources/fixtures/scopes/javascript.core/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.iteration.class.scope rename to resources/fixtures/scopes/javascript.core/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.iteration.document.scope b/resources/fixtures/scopes/javascript.core/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.iteration.document.scope rename to resources/fixtures/scopes/javascript.core/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/javascript.core/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/javascript.core/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.mapPair.iteration2.scope b/resources/fixtures/scopes/javascript.core/value/value.mapPair.iteration2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.mapPair.iteration2.scope rename to resources/fixtures/scopes/javascript.core/value/value.mapPair.iteration2.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.mapPair.scope b/resources/fixtures/scopes/javascript.core/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.mapPair.scope rename to resources/fixtures/scopes/javascript.core/value/value.mapPair.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.mapPair2.scope b/resources/fixtures/scopes/javascript.core/value/value.mapPair2.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.mapPair2.scope rename to resources/fixtures/scopes/javascript.core/value/value.mapPair2.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.return.lambda.scope b/resources/fixtures/scopes/javascript.core/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.return.lambda.scope rename to resources/fixtures/scopes/javascript.core/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.return.scope b/resources/fixtures/scopes/javascript.core/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.return.scope rename to resources/fixtures/scopes/javascript.core/value/value.return.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.switch.scope b/resources/fixtures/scopes/javascript.core/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.switch.scope rename to resources/fixtures/scopes/javascript.core/value/value.switch.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.throw.scope b/resources/fixtures/scopes/javascript.core/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.throw.scope rename to resources/fixtures/scopes/javascript.core/value/value.throw.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.variable.destructuring.scope b/resources/fixtures/scopes/javascript.core/value/value.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.variable.destructuring.scope rename to resources/fixtures/scopes/javascript.core/value/value.variable.destructuring.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.variable.scope b/resources/fixtures/scopes/javascript.core/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.variable.scope rename to resources/fixtures/scopes/javascript.core/value/value.variable.scope diff --git a/data/fixtures/scopes/javascript.core/value/value.yield.scope b/resources/fixtures/scopes/javascript.core/value/value.yield.scope similarity index 100% rename from data/fixtures/scopes/javascript.core/value/value.yield.scope rename to resources/fixtures/scopes/javascript.core/value/value.yield.scope diff --git a/data/fixtures/scopes/javascript.jsx/attribute.scope b/resources/fixtures/scopes/javascript.jsx/attribute.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/attribute.scope rename to resources/fixtures/scopes/javascript.jsx/attribute.scope diff --git a/data/fixtures/scopes/javascript.jsx/element.scope b/resources/fixtures/scopes/javascript.jsx/element.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/element.scope rename to resources/fixtures/scopes/javascript.jsx/element.scope diff --git a/data/fixtures/scopes/javascript.jsx/endTag.scope b/resources/fixtures/scopes/javascript.jsx/endTag.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/endTag.scope rename to resources/fixtures/scopes/javascript.jsx/endTag.scope diff --git a/data/fixtures/scopes/javascript.jsx/index.json b/resources/fixtures/scopes/javascript.jsx/index.json similarity index 100% rename from data/fixtures/scopes/javascript.jsx/index.json rename to resources/fixtures/scopes/javascript.jsx/index.json diff --git a/data/fixtures/scopes/javascript.jsx/interior.element.scope b/resources/fixtures/scopes/javascript.jsx/interior.element.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/interior.element.scope rename to resources/fixtures/scopes/javascript.jsx/interior.element.scope diff --git a/data/fixtures/scopes/javascript.jsx/key.attribute.scope b/resources/fixtures/scopes/javascript.jsx/key.attribute.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/key.attribute.scope rename to resources/fixtures/scopes/javascript.jsx/key.attribute.scope diff --git a/data/fixtures/scopes/javascript.jsx/key.attribute2.scope b/resources/fixtures/scopes/javascript.jsx/key.attribute2.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/key.attribute2.scope rename to resources/fixtures/scopes/javascript.jsx/key.attribute2.scope diff --git a/data/fixtures/scopes/javascript.jsx/startTag.scope b/resources/fixtures/scopes/javascript.jsx/startTag.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/startTag.scope rename to resources/fixtures/scopes/javascript.jsx/startTag.scope diff --git a/data/fixtures/scopes/javascript.jsx/tags.scope b/resources/fixtures/scopes/javascript.jsx/tags.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/tags.scope rename to resources/fixtures/scopes/javascript.jsx/tags.scope diff --git a/data/fixtures/scopes/javascript.jsx/textFragment.element.scope b/resources/fixtures/scopes/javascript.jsx/textFragment.element.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/textFragment.element.scope rename to resources/fixtures/scopes/javascript.jsx/textFragment.element.scope diff --git a/data/fixtures/scopes/javascript.jsx/textFragment.element2.scope b/resources/fixtures/scopes/javascript.jsx/textFragment.element2.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/textFragment.element2.scope rename to resources/fixtures/scopes/javascript.jsx/textFragment.element2.scope diff --git a/data/fixtures/scopes/javascript.jsx/value.attribute.scope b/resources/fixtures/scopes/javascript.jsx/value.attribute.scope similarity index 100% rename from data/fixtures/scopes/javascript.jsx/value.attribute.scope rename to resources/fixtures/scopes/javascript.jsx/value.attribute.scope diff --git a/data/fixtures/scopes/javascript/index.json b/resources/fixtures/scopes/javascript/index.json similarity index 100% rename from data/fixtures/scopes/javascript/index.json rename to resources/fixtures/scopes/javascript/index.json diff --git a/data/fixtures/scopes/javascriptreact/index.json b/resources/fixtures/scopes/javascriptreact/index.json similarity index 100% rename from data/fixtures/scopes/javascriptreact/index.json rename to resources/fixtures/scopes/javascriptreact/index.json diff --git a/data/fixtures/scopes/json/comment.block.scope b/resources/fixtures/scopes/json/comment.block.scope similarity index 100% rename from data/fixtures/scopes/json/comment.block.scope rename to resources/fixtures/scopes/json/comment.block.scope diff --git a/data/fixtures/scopes/json/comment.line.scope b/resources/fixtures/scopes/json/comment.line.scope similarity index 100% rename from data/fixtures/scopes/json/comment.line.scope rename to resources/fixtures/scopes/json/comment.line.scope diff --git a/data/fixtures/scopes/json/key.mapPair.iteration.scope b/resources/fixtures/scopes/json/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/json/key.mapPair.iteration.scope rename to resources/fixtures/scopes/json/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/json/key.mapPair.scope b/resources/fixtures/scopes/json/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/json/key.mapPair.scope rename to resources/fixtures/scopes/json/key.mapPair.scope diff --git a/data/fixtures/scopes/json/list.scope b/resources/fixtures/scopes/json/list.scope similarity index 100% rename from data/fixtures/scopes/json/list.scope rename to resources/fixtures/scopes/json/list.scope diff --git a/data/fixtures/scopes/json/map.scope b/resources/fixtures/scopes/json/map.scope similarity index 100% rename from data/fixtures/scopes/json/map.scope rename to resources/fixtures/scopes/json/map.scope diff --git a/data/fixtures/scopes/json/string.singleLine.scope b/resources/fixtures/scopes/json/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/json/string.singleLine.scope rename to resources/fixtures/scopes/json/string.singleLine.scope diff --git a/data/fixtures/scopes/json/textFragment.comment.block.scope b/resources/fixtures/scopes/json/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/json/textFragment.comment.block.scope rename to resources/fixtures/scopes/json/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/json/textFragment.comment.line.scope b/resources/fixtures/scopes/json/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/json/textFragment.comment.line.scope rename to resources/fixtures/scopes/json/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/json/textFragment.string.singleLine.scope b/resources/fixtures/scopes/json/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/json/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/json/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/json/value.mapPair.iteration.scope b/resources/fixtures/scopes/json/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/json/value.mapPair.iteration.scope rename to resources/fixtures/scopes/json/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/json/value.mapPair.scope b/resources/fixtures/scopes/json/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/json/value.mapPair.scope rename to resources/fixtures/scopes/json/value.mapPair.scope diff --git a/data/fixtures/scopes/jsonc/index.json b/resources/fixtures/scopes/jsonc/index.json similarity index 100% rename from data/fixtures/scopes/jsonc/index.json rename to resources/fixtures/scopes/jsonc/index.json diff --git a/data/fixtures/scopes/jsonl/index.json b/resources/fixtures/scopes/jsonl/index.json similarity index 100% rename from data/fixtures/scopes/jsonl/index.json rename to resources/fixtures/scopes/jsonl/index.json diff --git a/data/fixtures/scopes/jsonl/map.scope b/resources/fixtures/scopes/jsonl/map.scope similarity index 100% rename from data/fixtures/scopes/jsonl/map.scope rename to resources/fixtures/scopes/jsonl/map.scope diff --git a/data/fixtures/scopes/kotlin/anonymousFunction.scope b/resources/fixtures/scopes/kotlin/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/kotlin/anonymousFunction.scope rename to resources/fixtures/scopes/kotlin/anonymousFunction.scope diff --git a/data/fixtures/scopes/kotlin/anonymousFunction2.scope b/resources/fixtures/scopes/kotlin/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/anonymousFunction2.scope rename to resources/fixtures/scopes/kotlin/anonymousFunction2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration2.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.iteration2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine2.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.multiLine2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine2.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.constructor.singleLine2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.enum.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.enum.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.enum.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.enum.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.enum.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.enum.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.enum.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.enum.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.actual.singleLine2.scope b/resources/fixtures/scopes/kotlin/argument/argument.actual.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.actual.singleLine2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.actual.singleLine2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.catch.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration2.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.iteration2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine2.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.multiLine2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine2.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.constructor.singleLine2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.method.iteration2.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.method.iteration2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.method.iteration2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.method.iteration2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine2.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine2.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.method.singleLine2.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/kotlin/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/kotlin/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty2.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty2.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.empty2.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine2.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine2.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.multiLine2.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine2.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine2.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.constructor.singleLine2.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine2.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine2.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.multiLine2.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine2.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine2.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.constructor.singleLine2.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/kotlin/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/kotlin/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/kotlin/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.if.else.scope b/resources/fixtures/scopes/kotlin/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.if.else.scope rename to resources/fixtures/scopes/kotlin/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.if.iteration.scope b/resources/fixtures/scopes/kotlin/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/kotlin/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.if.scope b/resources/fixtures/scopes/kotlin/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.if.scope rename to resources/fixtures/scopes/kotlin/branch/branch.if.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/kotlin/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/kotlin/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.switchCase.scope b/resources/fixtures/scopes/kotlin/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.switchCase.scope rename to resources/fixtures/scopes/kotlin/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.switchCase2.scope b/resources/fixtures/scopes/kotlin/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/kotlin/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/kotlin/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/kotlin/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.ternary.scope b/resources/fixtures/scopes/kotlin/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.ternary.scope rename to resources/fixtures/scopes/kotlin/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.try.iteration.scope b/resources/fixtures/scopes/kotlin/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/kotlin/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/kotlin/branch/branch.try.scope b/resources/fixtures/scopes/kotlin/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/kotlin/branch/branch.try.scope rename to resources/fixtures/scopes/kotlin/branch/branch.try.scope diff --git a/data/fixtures/scopes/kotlin/class.iteration.class.scope b/resources/fixtures/scopes/kotlin/class.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/class.iteration.class.scope rename to resources/fixtures/scopes/kotlin/class.iteration.class.scope diff --git a/data/fixtures/scopes/kotlin/class.iteration.document.scope b/resources/fixtures/scopes/kotlin/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/kotlin/class.iteration.document.scope rename to resources/fixtures/scopes/kotlin/class.iteration.document.scope diff --git a/data/fixtures/scopes/kotlin/class.scope b/resources/fixtures/scopes/kotlin/class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/class.scope rename to resources/fixtures/scopes/kotlin/class.scope diff --git a/data/fixtures/scopes/kotlin/class2.scope b/resources/fixtures/scopes/kotlin/class2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/class2.scope rename to resources/fixtures/scopes/kotlin/class2.scope diff --git a/data/fixtures/scopes/kotlin/class3.scope b/resources/fixtures/scopes/kotlin/class3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/class3.scope rename to resources/fixtures/scopes/kotlin/class3.scope diff --git a/data/fixtures/scopes/kotlin/class4.scope b/resources/fixtures/scopes/kotlin/class4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/class4.scope rename to resources/fixtures/scopes/kotlin/class4.scope diff --git a/data/fixtures/scopes/kotlin/comment.block.scope b/resources/fixtures/scopes/kotlin/comment.block.scope similarity index 100% rename from data/fixtures/scopes/kotlin/comment.block.scope rename to resources/fixtures/scopes/kotlin/comment.block.scope diff --git a/data/fixtures/scopes/kotlin/comment.block2.scope b/resources/fixtures/scopes/kotlin/comment.block2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/comment.block2.scope rename to resources/fixtures/scopes/kotlin/comment.block2.scope diff --git a/data/fixtures/scopes/kotlin/comment.line.scope b/resources/fixtures/scopes/kotlin/comment.line.scope similarity index 100% rename from data/fixtures/scopes/kotlin/comment.line.scope rename to resources/fixtures/scopes/kotlin/comment.line.scope diff --git a/data/fixtures/scopes/kotlin/condition/condition.doWhile.scope b/resources/fixtures/scopes/kotlin/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/kotlin/condition/condition.doWhile.scope rename to resources/fixtures/scopes/kotlin/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/kotlin/condition/condition.if.scope b/resources/fixtures/scopes/kotlin/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/kotlin/condition/condition.if.scope rename to resources/fixtures/scopes/kotlin/condition/condition.if.scope diff --git a/data/fixtures/scopes/kotlin/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/kotlin/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/kotlin/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/kotlin/condition/condition.switchCase.scope b/resources/fixtures/scopes/kotlin/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/kotlin/condition/condition.switchCase.scope rename to resources/fixtures/scopes/kotlin/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/kotlin/condition/condition.switchCase2.scope b/resources/fixtures/scopes/kotlin/condition/condition.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/condition/condition.switchCase2.scope rename to resources/fixtures/scopes/kotlin/condition/condition.switchCase2.scope diff --git a/data/fixtures/scopes/kotlin/condition/condition.ternary.scope b/resources/fixtures/scopes/kotlin/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/kotlin/condition/condition.ternary.scope rename to resources/fixtures/scopes/kotlin/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/kotlin/condition/condition.while.scope b/resources/fixtures/scopes/kotlin/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/kotlin/condition/condition.while.scope rename to resources/fixtures/scopes/kotlin/condition/condition.while.scope diff --git a/data/fixtures/scopes/kotlin/disqualifyDelimiter.scope b/resources/fixtures/scopes/kotlin/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/kotlin/disqualifyDelimiter.scope rename to resources/fixtures/scopes/kotlin/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.chain.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.chain.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.chain.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.constructor.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.constructor.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.constructor.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.constructor2.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.constructor2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.constructor2.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.constructor2.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.constructor3.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.constructor3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.constructor3.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.constructor3.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.enum.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.enum.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.enum.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.generic.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.generic.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.generic.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.method.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.method.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.method.scope diff --git a/data/fixtures/scopes/kotlin/functionCall/functionCall.scope b/resources/fixtures/scopes/kotlin/functionCall/functionCall.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCall/functionCall.scope rename to resources/fixtures/scopes/kotlin/functionCall/functionCall.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.chain.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.chain.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.chain.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor2.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor2.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor2.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor3.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor3.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.constructor3.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.enum.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.enum.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.enum.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.generic.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.generic.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.generic.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.method.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.method.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.method.scope diff --git a/data/fixtures/scopes/kotlin/functionCallee/functionCallee.scope b/resources/fixtures/scopes/kotlin/functionCallee/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/kotlin/functionCallee/functionCallee.scope rename to resources/fixtures/scopes/kotlin/functionCallee/functionCallee.scope diff --git a/data/fixtures/scopes/kotlin/ifStatement.scope b/resources/fixtures/scopes/kotlin/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/kotlin/ifStatement.scope rename to resources/fixtures/scopes/kotlin/ifStatement.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.class.scope b/resources/fixtures/scopes/kotlin/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.class.scope rename to resources/fixtures/scopes/kotlin/interior/interior.class.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.constructor.scope b/resources/fixtures/scopes/kotlin/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.constructor.scope rename to resources/fixtures/scopes/kotlin/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.doWhile.scope b/resources/fixtures/scopes/kotlin/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.doWhile.scope rename to resources/fixtures/scopes/kotlin/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.enum.scope b/resources/fixtures/scopes/kotlin/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.enum.scope rename to resources/fixtures/scopes/kotlin/interior/interior.enum.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.for.scope b/resources/fixtures/scopes/kotlin/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.for.scope rename to resources/fixtures/scopes/kotlin/interior/interior.for.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.foreach.scope b/resources/fixtures/scopes/kotlin/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.foreach.scope rename to resources/fixtures/scopes/kotlin/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.function.scope b/resources/fixtures/scopes/kotlin/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.function.scope rename to resources/fixtures/scopes/kotlin/interior/interior.function.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.if.scope b/resources/fixtures/scopes/kotlin/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.if.scope rename to resources/fixtures/scopes/kotlin/interior/interior.if.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.interface.scope b/resources/fixtures/scopes/kotlin/interior/interior.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.interface.scope rename to resources/fixtures/scopes/kotlin/interior/interior.interface.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.lambda.scope b/resources/fixtures/scopes/kotlin/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.lambda.scope rename to resources/fixtures/scopes/kotlin/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.method.scope b/resources/fixtures/scopes/kotlin/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.method.scope rename to resources/fixtures/scopes/kotlin/interior/interior.method.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.static.scope b/resources/fixtures/scopes/kotlin/interior/interior.static.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.static.scope rename to resources/fixtures/scopes/kotlin/interior/interior.static.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.switch.scope b/resources/fixtures/scopes/kotlin/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.switch.scope rename to resources/fixtures/scopes/kotlin/interior/interior.switch.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.switchCase.scope b/resources/fixtures/scopes/kotlin/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.switchCase.scope rename to resources/fixtures/scopes/kotlin/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.switchCase2.scope b/resources/fixtures/scopes/kotlin/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/kotlin/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.try.scope b/resources/fixtures/scopes/kotlin/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.try.scope rename to resources/fixtures/scopes/kotlin/interior/interior.try.scope diff --git a/data/fixtures/scopes/kotlin/interior/interior.while.scope b/resources/fixtures/scopes/kotlin/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/kotlin/interior/interior.while.scope rename to resources/fixtures/scopes/kotlin/interior/interior.while.scope diff --git a/data/fixtures/scopes/kotlin/key.mapPair.iteration.scope b/resources/fixtures/scopes/kotlin/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/key.mapPair.iteration.scope rename to resources/fixtures/scopes/kotlin/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/kotlin/key.mapPair.scope b/resources/fixtures/scopes/kotlin/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/kotlin/key.mapPair.scope rename to resources/fixtures/scopes/kotlin/key.mapPair.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/kotlin/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.actual.scope b/resources/fixtures/scopes/kotlin/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.actual.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.catch.scope b/resources/fixtures/scopes/kotlin/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.catch.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration2.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration2.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor.iteration2.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.constructor2.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.constructor2.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor2.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.constructor3.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.constructor3.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor3.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.constructor4.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.constructor4.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.constructor4.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.method.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.method2.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.method2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.method2.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.method2.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.method3.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.method3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.method3.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.method3.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/kotlin/name/name.argument.formal2.scope b/resources/fixtures/scopes/kotlin/name/name.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.argument.formal2.scope rename to resources/fixtures/scopes/kotlin/name/name.argument.formal2.scope diff --git a/data/fixtures/scopes/kotlin/name/name.assignment.compound.scope b/resources/fixtures/scopes/kotlin/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.assignment.compound.scope rename to resources/fixtures/scopes/kotlin/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/kotlin/name/name.assignment.scope b/resources/fixtures/scopes/kotlin/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.assignment.scope rename to resources/fixtures/scopes/kotlin/name/name.assignment.scope diff --git a/data/fixtures/scopes/kotlin/name/name.class.scope b/resources/fixtures/scopes/kotlin/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.class.scope rename to resources/fixtures/scopes/kotlin/name/name.class.scope diff --git a/data/fixtures/scopes/kotlin/name/name.class2.scope b/resources/fixtures/scopes/kotlin/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.class2.scope rename to resources/fixtures/scopes/kotlin/name/name.class2.scope diff --git a/data/fixtures/scopes/kotlin/name/name.class3.scope b/resources/fixtures/scopes/kotlin/name/name.class3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.class3.scope rename to resources/fixtures/scopes/kotlin/name/name.class3.scope diff --git a/data/fixtures/scopes/kotlin/name/name.constant.scope b/resources/fixtures/scopes/kotlin/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.constant.scope rename to resources/fixtures/scopes/kotlin/name/name.constant.scope diff --git a/data/fixtures/scopes/kotlin/name/name.constructor.scope b/resources/fixtures/scopes/kotlin/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.constructor.scope rename to resources/fixtures/scopes/kotlin/name/name.constructor.scope diff --git a/data/fixtures/scopes/kotlin/name/name.enum.scope b/resources/fixtures/scopes/kotlin/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.enum.scope rename to resources/fixtures/scopes/kotlin/name/name.enum.scope diff --git a/data/fixtures/scopes/kotlin/name/name.field.class.scope b/resources/fixtures/scopes/kotlin/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.field.class.scope rename to resources/fixtures/scopes/kotlin/name/name.field.class.scope diff --git a/data/fixtures/scopes/kotlin/name/name.field.enum.scope b/resources/fixtures/scopes/kotlin/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.field.enum.scope rename to resources/fixtures/scopes/kotlin/name/name.field.enum.scope diff --git a/data/fixtures/scopes/kotlin/name/name.field.interface.scope b/resources/fixtures/scopes/kotlin/name/name.field.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.field.interface.scope rename to resources/fixtures/scopes/kotlin/name/name.field.interface.scope diff --git a/data/fixtures/scopes/kotlin/name/name.foreach.scope b/resources/fixtures/scopes/kotlin/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.foreach.scope rename to resources/fixtures/scopes/kotlin/name/name.foreach.scope diff --git a/data/fixtures/scopes/kotlin/name/name.function.scope b/resources/fixtures/scopes/kotlin/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.function.scope rename to resources/fixtures/scopes/kotlin/name/name.function.scope diff --git a/data/fixtures/scopes/kotlin/name/name.interface.scope b/resources/fixtures/scopes/kotlin/name/name.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.interface.scope rename to resources/fixtures/scopes/kotlin/name/name.interface.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.block.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.block.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.block2.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.block2.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.block3.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.block3.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.block4.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.block4.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.class.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.class.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.document.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.document.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.enum.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.enum.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/kotlin/name/name.iteration.interface.scope b/resources/fixtures/scopes/kotlin/name/name.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.iteration.interface.scope rename to resources/fixtures/scopes/kotlin/name/name.iteration.interface.scope diff --git a/data/fixtures/scopes/kotlin/name/name.method.interface.scope b/resources/fixtures/scopes/kotlin/name/name.method.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.method.interface.scope rename to resources/fixtures/scopes/kotlin/name/name.method.interface.scope diff --git a/data/fixtures/scopes/kotlin/name/name.method.scope b/resources/fixtures/scopes/kotlin/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.method.scope rename to resources/fixtures/scopes/kotlin/name/name.method.scope diff --git a/data/fixtures/scopes/kotlin/name/name.typeAlias.scope b/resources/fixtures/scopes/kotlin/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.typeAlias.scope rename to resources/fixtures/scopes/kotlin/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/kotlin/name/name.variable.destructuring.scope b/resources/fixtures/scopes/kotlin/name/name.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.variable.destructuring.scope rename to resources/fixtures/scopes/kotlin/name/name.variable.destructuring.scope diff --git a/data/fixtures/scopes/kotlin/name/name.variable.initialized.scope b/resources/fixtures/scopes/kotlin/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.variable.initialized.scope rename to resources/fixtures/scopes/kotlin/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/kotlin/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/kotlin/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/kotlin/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/kotlin/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor2.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor2.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.constructor2.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.class.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.document.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.method.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.method.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.method2.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.method2.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method2.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.method3.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.method3.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method3.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.method4.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.method4.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.method4.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction.scope diff --git a/data/fixtures/scopes/kotlin/namedFunction/namedFunction2.scope b/resources/fixtures/scopes/kotlin/namedFunction/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/namedFunction/namedFunction2.scope rename to resources/fixtures/scopes/kotlin/namedFunction/namedFunction2.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/kotlin/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/kotlin/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.assignment.scope b/resources/fixtures/scopes/kotlin/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.assignment.scope rename to resources/fixtures/scopes/kotlin/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.break.scope b/resources/fixtures/scopes/kotlin/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.break.scope rename to resources/fixtures/scopes/kotlin/statement/statement.break.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.class.scope b/resources/fixtures/scopes/kotlin/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.class.scope rename to resources/fixtures/scopes/kotlin/statement/statement.class.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.class2.scope b/resources/fixtures/scopes/kotlin/statement/statement.class2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.class2.scope rename to resources/fixtures/scopes/kotlin/statement/statement.class2.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.class3.scope b/resources/fixtures/scopes/kotlin/statement/statement.class3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.class3.scope rename to resources/fixtures/scopes/kotlin/statement/statement.class3.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.constant.scope b/resources/fixtures/scopes/kotlin/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.constant.scope rename to resources/fixtures/scopes/kotlin/statement/statement.constant.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.constructor.scope b/resources/fixtures/scopes/kotlin/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.constructor.scope rename to resources/fixtures/scopes/kotlin/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.constructor2.scope b/resources/fixtures/scopes/kotlin/statement/statement.constructor2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.constructor2.scope rename to resources/fixtures/scopes/kotlin/statement/statement.constructor2.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.continue.scope b/resources/fixtures/scopes/kotlin/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.continue.scope rename to resources/fixtures/scopes/kotlin/statement/statement.continue.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.doWhile.scope b/resources/fixtures/scopes/kotlin/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.doWhile.scope rename to resources/fixtures/scopes/kotlin/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.enum.scope b/resources/fixtures/scopes/kotlin/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.enum.scope rename to resources/fixtures/scopes/kotlin/statement/statement.enum.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.field.class.scope b/resources/fixtures/scopes/kotlin/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.field.class.scope rename to resources/fixtures/scopes/kotlin/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.field.interface.scope b/resources/fixtures/scopes/kotlin/statement/statement.field.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.field.interface.scope rename to resources/fixtures/scopes/kotlin/statement/statement.field.interface.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.foreach.scope b/resources/fixtures/scopes/kotlin/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.foreach.scope rename to resources/fixtures/scopes/kotlin/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.function.scope b/resources/fixtures/scopes/kotlin/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.function.scope rename to resources/fixtures/scopes/kotlin/statement/statement.function.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.functionCall.scope b/resources/fixtures/scopes/kotlin/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.functionCall.scope rename to resources/fixtures/scopes/kotlin/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.if.scope b/resources/fixtures/scopes/kotlin/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.if.scope rename to resources/fixtures/scopes/kotlin/statement/statement.if.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.import.scope b/resources/fixtures/scopes/kotlin/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.import.scope rename to resources/fixtures/scopes/kotlin/statement/statement.import.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.interface.scope b/resources/fixtures/scopes/kotlin/statement/statement.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.interface.scope rename to resources/fixtures/scopes/kotlin/statement/statement.interface.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.iteration.block.scope b/resources/fixtures/scopes/kotlin/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/kotlin/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/kotlin/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/kotlin/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/kotlin/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/kotlin/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/kotlin/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/kotlin/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.iteration.class.scope b/resources/fixtures/scopes/kotlin/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/kotlin/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.iteration.document.scope b/resources/fixtures/scopes/kotlin/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/kotlin/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.iteration.interface.scope b/resources/fixtures/scopes/kotlin/statement/statement.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.iteration.interface.scope rename to resources/fixtures/scopes/kotlin/statement/statement.iteration.interface.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.method.interface.scope b/resources/fixtures/scopes/kotlin/statement/statement.method.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.method.interface.scope rename to resources/fixtures/scopes/kotlin/statement/statement.method.interface.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.method.scope b/resources/fixtures/scopes/kotlin/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.method.scope rename to resources/fixtures/scopes/kotlin/statement/statement.method.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.method2.scope b/resources/fixtures/scopes/kotlin/statement/statement.method2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.method2.scope rename to resources/fixtures/scopes/kotlin/statement/statement.method2.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.method3.scope b/resources/fixtures/scopes/kotlin/statement/statement.method3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.method3.scope rename to resources/fixtures/scopes/kotlin/statement/statement.method3.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.method4.scope b/resources/fixtures/scopes/kotlin/statement/statement.method4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.method4.scope rename to resources/fixtures/scopes/kotlin/statement/statement.method4.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.package.scope b/resources/fixtures/scopes/kotlin/statement/statement.package.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.package.scope rename to resources/fixtures/scopes/kotlin/statement/statement.package.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.return.scope b/resources/fixtures/scopes/kotlin/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.return.scope rename to resources/fixtures/scopes/kotlin/statement/statement.return.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.static.scope b/resources/fixtures/scopes/kotlin/statement/statement.static.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.static.scope rename to resources/fixtures/scopes/kotlin/statement/statement.static.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.switch.scope b/resources/fixtures/scopes/kotlin/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.switch.scope rename to resources/fixtures/scopes/kotlin/statement/statement.switch.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.throw.scope b/resources/fixtures/scopes/kotlin/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.throw.scope rename to resources/fixtures/scopes/kotlin/statement/statement.throw.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.try.scope b/resources/fixtures/scopes/kotlin/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.try.scope rename to resources/fixtures/scopes/kotlin/statement/statement.try.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.typeAlias.scope b/resources/fixtures/scopes/kotlin/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/kotlin/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.update.scope b/resources/fixtures/scopes/kotlin/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.update.scope rename to resources/fixtures/scopes/kotlin/statement/statement.update.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.update2.scope b/resources/fixtures/scopes/kotlin/statement/statement.update2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.update2.scope rename to resources/fixtures/scopes/kotlin/statement/statement.update2.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.variable.destructuring.scope b/resources/fixtures/scopes/kotlin/statement/statement.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.variable.destructuring.scope rename to resources/fixtures/scopes/kotlin/statement/statement.variable.destructuring.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/kotlin/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/kotlin/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/kotlin/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/kotlin/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/kotlin/statement/statement.while.scope b/resources/fixtures/scopes/kotlin/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/kotlin/statement/statement.while.scope rename to resources/fixtures/scopes/kotlin/statement/statement.while.scope diff --git a/data/fixtures/scopes/kotlin/string.multiLine.scope b/resources/fixtures/scopes/kotlin/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/string.multiLine.scope rename to resources/fixtures/scopes/kotlin/string.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/string.singleLine.scope b/resources/fixtures/scopes/kotlin/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/string.singleLine.scope rename to resources/fixtures/scopes/kotlin/string.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/textFragment.comment.block.scope b/resources/fixtures/scopes/kotlin/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/kotlin/textFragment.comment.block.scope rename to resources/fixtures/scopes/kotlin/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/kotlin/textFragment.comment.block2.scope b/resources/fixtures/scopes/kotlin/textFragment.comment.block2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/textFragment.comment.block2.scope rename to resources/fixtures/scopes/kotlin/textFragment.comment.block2.scope diff --git a/data/fixtures/scopes/kotlin/textFragment.comment.line.scope b/resources/fixtures/scopes/kotlin/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/kotlin/textFragment.comment.line.scope rename to resources/fixtures/scopes/kotlin/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/kotlin/textFragment.string.multiLine.scope b/resources/fixtures/scopes/kotlin/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/kotlin/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/kotlin/textFragment.string.singleLine.scope b/resources/fixtures/scopes/kotlin/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/kotlin/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/kotlin/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/kotlin/type/type.alias.scope b/resources/fixtures/scopes/kotlin/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.alias.scope rename to resources/fixtures/scopes/kotlin/type/type.alias.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.catch.scope b/resources/fixtures/scopes/kotlin/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.catch.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration2.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration2.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor.iteration2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.constructor2.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.constructor2.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.constructor2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.method.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.method2.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.method2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.method2.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.method2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/kotlin/type/type.argument.formal2.scope b/resources/fixtures/scopes/kotlin/type/type.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.argument.formal2.scope rename to resources/fixtures/scopes/kotlin/type/type.argument.formal2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.class.scope b/resources/fixtures/scopes/kotlin/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.class.scope rename to resources/fixtures/scopes/kotlin/type/type.class.scope diff --git a/data/fixtures/scopes/kotlin/type/type.class2.scope b/resources/fixtures/scopes/kotlin/type/type.class2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.class2.scope rename to resources/fixtures/scopes/kotlin/type/type.class2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.class3.scope b/resources/fixtures/scopes/kotlin/type/type.class3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.class3.scope rename to resources/fixtures/scopes/kotlin/type/type.class3.scope diff --git a/data/fixtures/scopes/kotlin/type/type.constant.scope b/resources/fixtures/scopes/kotlin/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.constant.scope rename to resources/fixtures/scopes/kotlin/type/type.constant.scope diff --git a/data/fixtures/scopes/kotlin/type/type.enum.scope b/resources/fixtures/scopes/kotlin/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.enum.scope rename to resources/fixtures/scopes/kotlin/type/type.enum.scope diff --git a/data/fixtures/scopes/kotlin/type/type.field.class.scope b/resources/fixtures/scopes/kotlin/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.field.class.scope rename to resources/fixtures/scopes/kotlin/type/type.field.class.scope diff --git a/data/fixtures/scopes/kotlin/type/type.field.interface.scope b/resources/fixtures/scopes/kotlin/type/type.field.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.field.interface.scope rename to resources/fixtures/scopes/kotlin/type/type.field.interface.scope diff --git a/data/fixtures/scopes/kotlin/type/type.foreach.scope b/resources/fixtures/scopes/kotlin/type/type.foreach.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.foreach.scope rename to resources/fixtures/scopes/kotlin/type/type.foreach.scope diff --git a/data/fixtures/scopes/kotlin/type/type.interface.scope b/resources/fixtures/scopes/kotlin/type/type.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.interface.scope rename to resources/fixtures/scopes/kotlin/type/type.interface.scope diff --git a/data/fixtures/scopes/kotlin/type/type.iteration.block.scope b/resources/fixtures/scopes/kotlin/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.iteration.block.scope rename to resources/fixtures/scopes/kotlin/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/kotlin/type/type.iteration.block2.scope b/resources/fixtures/scopes/kotlin/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.iteration.block2.scope rename to resources/fixtures/scopes/kotlin/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.iteration.block3.scope b/resources/fixtures/scopes/kotlin/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.iteration.block3.scope rename to resources/fixtures/scopes/kotlin/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/kotlin/type/type.iteration.block4.scope b/resources/fixtures/scopes/kotlin/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.iteration.block4.scope rename to resources/fixtures/scopes/kotlin/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/kotlin/type/type.iteration.class.scope b/resources/fixtures/scopes/kotlin/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.iteration.class.scope rename to resources/fixtures/scopes/kotlin/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/kotlin/type/type.iteration.document.scope b/resources/fixtures/scopes/kotlin/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.iteration.document.scope rename to resources/fixtures/scopes/kotlin/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/kotlin/type/type.iteration.interface.scope b/resources/fixtures/scopes/kotlin/type/type.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.iteration.interface.scope rename to resources/fixtures/scopes/kotlin/type/type.iteration.interface.scope diff --git a/data/fixtures/scopes/kotlin/type/type.return.method.scope b/resources/fixtures/scopes/kotlin/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.return.method.scope rename to resources/fixtures/scopes/kotlin/type/type.return.method.scope diff --git a/data/fixtures/scopes/kotlin/type/type.return.scope b/resources/fixtures/scopes/kotlin/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.return.scope rename to resources/fixtures/scopes/kotlin/type/type.return.scope diff --git a/data/fixtures/scopes/kotlin/type/type.return2.scope b/resources/fixtures/scopes/kotlin/type/type.return2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.return2.scope rename to resources/fixtures/scopes/kotlin/type/type.return2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.return3.scope b/resources/fixtures/scopes/kotlin/type/type.return3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.return3.scope rename to resources/fixtures/scopes/kotlin/type/type.return3.scope diff --git a/data/fixtures/scopes/kotlin/type/type.return4.scope b/resources/fixtures/scopes/kotlin/type/type.return4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.return4.scope rename to resources/fixtures/scopes/kotlin/type/type.return4.scope diff --git a/data/fixtures/scopes/kotlin/type/type.return5.scope b/resources/fixtures/scopes/kotlin/type/type.return5.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.return5.scope rename to resources/fixtures/scopes/kotlin/type/type.return5.scope diff --git a/data/fixtures/scopes/kotlin/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/kotlin/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/kotlin/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/kotlin/type/type.typeArgument.scope b/resources/fixtures/scopes/kotlin/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.typeArgument.scope rename to resources/fixtures/scopes/kotlin/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/kotlin/type/type.variable.initialized.scope b/resources/fixtures/scopes/kotlin/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.variable.initialized.scope rename to resources/fixtures/scopes/kotlin/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/kotlin/type/type.variable.initialized2.scope b/resources/fixtures/scopes/kotlin/type/type.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.variable.initialized2.scope rename to resources/fixtures/scopes/kotlin/type/type.variable.initialized2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/kotlin/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/kotlin/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/kotlin/type/type.variable.uninitialized2.scope b/resources/fixtures/scopes/kotlin/type/type.variable.uninitialized2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.variable.uninitialized2.scope rename to resources/fixtures/scopes/kotlin/type/type.variable.uninitialized2.scope diff --git a/data/fixtures/scopes/kotlin/type/type.variable.uninitialized3.scope b/resources/fixtures/scopes/kotlin/type/type.variable.uninitialized3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/type/type.variable.uninitialized3.scope rename to resources/fixtures/scopes/kotlin/type/type.variable.uninitialized3.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/kotlin/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.actual.scope b/resources/fixtures/scopes/kotlin/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.actual.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration2.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration2.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor.iteration2.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.constructor2.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.constructor2.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.constructor2.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.method.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/kotlin/value/value.argument.formal.scope b/resources/fixtures/scopes/kotlin/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.argument.formal.scope rename to resources/fixtures/scopes/kotlin/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/kotlin/value/value.assignment.compound.scope b/resources/fixtures/scopes/kotlin/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.assignment.compound.scope rename to resources/fixtures/scopes/kotlin/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/kotlin/value/value.assignment.scope b/resources/fixtures/scopes/kotlin/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.assignment.scope rename to resources/fixtures/scopes/kotlin/value/value.assignment.scope diff --git a/data/fixtures/scopes/kotlin/value/value.constant.scope b/resources/fixtures/scopes/kotlin/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.constant.scope rename to resources/fixtures/scopes/kotlin/value/value.constant.scope diff --git a/data/fixtures/scopes/kotlin/value/value.field.class.scope b/resources/fixtures/scopes/kotlin/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.field.class.scope rename to resources/fixtures/scopes/kotlin/value/value.field.class.scope diff --git a/data/fixtures/scopes/kotlin/value/value.foreach.scope b/resources/fixtures/scopes/kotlin/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.foreach.scope rename to resources/fixtures/scopes/kotlin/value/value.foreach.scope diff --git a/data/fixtures/scopes/kotlin/value/value.iteration.block.scope b/resources/fixtures/scopes/kotlin/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.iteration.block.scope rename to resources/fixtures/scopes/kotlin/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/kotlin/value/value.iteration.block2.scope b/resources/fixtures/scopes/kotlin/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.iteration.block2.scope rename to resources/fixtures/scopes/kotlin/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/kotlin/value/value.iteration.block3.scope b/resources/fixtures/scopes/kotlin/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.iteration.block3.scope rename to resources/fixtures/scopes/kotlin/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/kotlin/value/value.iteration.block4.scope b/resources/fixtures/scopes/kotlin/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.iteration.block4.scope rename to resources/fixtures/scopes/kotlin/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/kotlin/value/value.iteration.class.scope b/resources/fixtures/scopes/kotlin/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.iteration.class.scope rename to resources/fixtures/scopes/kotlin/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/kotlin/value/value.iteration.document.scope b/resources/fixtures/scopes/kotlin/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.iteration.document.scope rename to resources/fixtures/scopes/kotlin/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/kotlin/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/kotlin/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/kotlin/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/kotlin/value/value.mapPair.scope b/resources/fixtures/scopes/kotlin/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.mapPair.scope rename to resources/fixtures/scopes/kotlin/value/value.mapPair.scope diff --git a/data/fixtures/scopes/kotlin/value/value.return.lambda.scope b/resources/fixtures/scopes/kotlin/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.return.lambda.scope rename to resources/fixtures/scopes/kotlin/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/kotlin/value/value.return.lambda2.scope b/resources/fixtures/scopes/kotlin/value/value.return.lambda2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.return.lambda2.scope rename to resources/fixtures/scopes/kotlin/value/value.return.lambda2.scope diff --git a/data/fixtures/scopes/kotlin/value/value.return.lambda3.scope b/resources/fixtures/scopes/kotlin/value/value.return.lambda3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.return.lambda3.scope rename to resources/fixtures/scopes/kotlin/value/value.return.lambda3.scope diff --git a/data/fixtures/scopes/kotlin/value/value.return.scope b/resources/fixtures/scopes/kotlin/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.return.scope rename to resources/fixtures/scopes/kotlin/value/value.return.scope diff --git a/data/fixtures/scopes/kotlin/value/value.switch.scope b/resources/fixtures/scopes/kotlin/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.switch.scope rename to resources/fixtures/scopes/kotlin/value/value.switch.scope diff --git a/data/fixtures/scopes/kotlin/value/value.switch2.scope b/resources/fixtures/scopes/kotlin/value/value.switch2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.switch2.scope rename to resources/fixtures/scopes/kotlin/value/value.switch2.scope diff --git a/data/fixtures/scopes/kotlin/value/value.switch3.scope b/resources/fixtures/scopes/kotlin/value/value.switch3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.switch3.scope rename to resources/fixtures/scopes/kotlin/value/value.switch3.scope diff --git a/data/fixtures/scopes/kotlin/value/value.throw.scope b/resources/fixtures/scopes/kotlin/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.throw.scope rename to resources/fixtures/scopes/kotlin/value/value.throw.scope diff --git a/data/fixtures/scopes/kotlin/value/value.typeAlias.scope b/resources/fixtures/scopes/kotlin/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.typeAlias.scope rename to resources/fixtures/scopes/kotlin/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/kotlin/value/value.typeAlias2.scope b/resources/fixtures/scopes/kotlin/value/value.typeAlias2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.typeAlias2.scope rename to resources/fixtures/scopes/kotlin/value/value.typeAlias2.scope diff --git a/data/fixtures/scopes/kotlin/value/value.variable.destructuring.scope b/resources/fixtures/scopes/kotlin/value/value.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.variable.destructuring.scope rename to resources/fixtures/scopes/kotlin/value/value.variable.destructuring.scope diff --git a/data/fixtures/scopes/kotlin/value/value.variable.scope b/resources/fixtures/scopes/kotlin/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.variable.scope rename to resources/fixtures/scopes/kotlin/value/value.variable.scope diff --git a/data/fixtures/scopes/kotlin/value/value.variable2.scope b/resources/fixtures/scopes/kotlin/value/value.variable2.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.variable2.scope rename to resources/fixtures/scopes/kotlin/value/value.variable2.scope diff --git a/data/fixtures/scopes/kotlin/value/value.variable3.scope b/resources/fixtures/scopes/kotlin/value/value.variable3.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.variable3.scope rename to resources/fixtures/scopes/kotlin/value/value.variable3.scope diff --git a/data/fixtures/scopes/kotlin/value/value.variable4.scope b/resources/fixtures/scopes/kotlin/value/value.variable4.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.variable4.scope rename to resources/fixtures/scopes/kotlin/value/value.variable4.scope diff --git a/data/fixtures/scopes/kotlin/value/value.variable5.scope b/resources/fixtures/scopes/kotlin/value/value.variable5.scope similarity index 100% rename from data/fixtures/scopes/kotlin/value/value.variable5.scope rename to resources/fixtures/scopes/kotlin/value/value.variable5.scope diff --git a/data/fixtures/scopes/latex/argument.actual.iteration.scope b/resources/fixtures/scopes/latex/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/latex/argument.actual.iteration.scope rename to resources/fixtures/scopes/latex/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/latex/argument.actual.multiLine.scope b/resources/fixtures/scopes/latex/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/latex/argument.actual.multiLine.scope rename to resources/fixtures/scopes/latex/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/latex/argument.actual.singleLine.scope b/resources/fixtures/scopes/latex/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/latex/argument.actual.singleLine.scope rename to resources/fixtures/scopes/latex/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/latex/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/latex/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/latex/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/latex/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/latex/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/latex/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/latex/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/latex/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/latex/comment.block.scope b/resources/fixtures/scopes/latex/comment.block.scope similarity index 100% rename from data/fixtures/scopes/latex/comment.block.scope rename to resources/fixtures/scopes/latex/comment.block.scope diff --git a/data/fixtures/scopes/latex/comment.line.scope b/resources/fixtures/scopes/latex/comment.line.scope similarity index 100% rename from data/fixtures/scopes/latex/comment.line.scope rename to resources/fixtures/scopes/latex/comment.line.scope diff --git a/data/fixtures/scopes/latex/disqualifyDelimiter.scope b/resources/fixtures/scopes/latex/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/latex/disqualifyDelimiter.scope rename to resources/fixtures/scopes/latex/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/latex/element.scope b/resources/fixtures/scopes/latex/element.scope similarity index 100% rename from data/fixtures/scopes/latex/element.scope rename to resources/fixtures/scopes/latex/element.scope diff --git a/data/fixtures/scopes/latex/endTag.scope b/resources/fixtures/scopes/latex/endTag.scope similarity index 100% rename from data/fixtures/scopes/latex/endTag.scope rename to resources/fixtures/scopes/latex/endTag.scope diff --git a/data/fixtures/scopes/latex/environment.scope b/resources/fixtures/scopes/latex/environment.scope similarity index 100% rename from data/fixtures/scopes/latex/environment.scope rename to resources/fixtures/scopes/latex/environment.scope diff --git a/data/fixtures/scopes/latex/functionCall.scope b/resources/fixtures/scopes/latex/functionCall.scope similarity index 100% rename from data/fixtures/scopes/latex/functionCall.scope rename to resources/fixtures/scopes/latex/functionCall.scope diff --git a/data/fixtures/scopes/latex/functionCallee.scope b/resources/fixtures/scopes/latex/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/latex/functionCallee.scope rename to resources/fixtures/scopes/latex/functionCallee.scope diff --git a/data/fixtures/scopes/latex/interior.element.scope b/resources/fixtures/scopes/latex/interior.element.scope similarity index 100% rename from data/fixtures/scopes/latex/interior.element.scope rename to resources/fixtures/scopes/latex/interior.element.scope diff --git a/data/fixtures/scopes/latex/list.scope b/resources/fixtures/scopes/latex/list.scope similarity index 100% rename from data/fixtures/scopes/latex/list.scope rename to resources/fixtures/scopes/latex/list.scope diff --git a/data/fixtures/scopes/latex/section.iteration.document.scope b/resources/fixtures/scopes/latex/section.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/latex/section.iteration.document.scope rename to resources/fixtures/scopes/latex/section.iteration.document.scope diff --git a/data/fixtures/scopes/latex/section.scope b/resources/fixtures/scopes/latex/section.scope similarity index 100% rename from data/fixtures/scopes/latex/section.scope rename to resources/fixtures/scopes/latex/section.scope diff --git a/data/fixtures/scopes/latex/startTag.scope b/resources/fixtures/scopes/latex/startTag.scope similarity index 100% rename from data/fixtures/scopes/latex/startTag.scope rename to resources/fixtures/scopes/latex/startTag.scope diff --git a/data/fixtures/scopes/latex/statement.functionCall.scope b/resources/fixtures/scopes/latex/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/latex/statement.functionCall.scope rename to resources/fixtures/scopes/latex/statement.functionCall.scope diff --git a/data/fixtures/scopes/latex/tags.scope b/resources/fixtures/scopes/latex/tags.scope similarity index 100% rename from data/fixtures/scopes/latex/tags.scope rename to resources/fixtures/scopes/latex/tags.scope diff --git a/data/fixtures/scopes/latex/textFragment.comment.block.scope b/resources/fixtures/scopes/latex/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/latex/textFragment.comment.block.scope rename to resources/fixtures/scopes/latex/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/latex/textFragment.comment.line.scope b/resources/fixtures/scopes/latex/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/latex/textFragment.comment.line.scope rename to resources/fixtures/scopes/latex/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/latex/textFragment.element.scope b/resources/fixtures/scopes/latex/textFragment.element.scope similarity index 100% rename from data/fixtures/scopes/latex/textFragment.element.scope rename to resources/fixtures/scopes/latex/textFragment.element.scope diff --git a/data/fixtures/scopes/lua/anonymousFunction.scope b/resources/fixtures/scopes/lua/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/lua/anonymousFunction.scope rename to resources/fixtures/scopes/lua/anonymousFunction.scope diff --git a/data/fixtures/scopes/lua/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/lua/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/lua/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/lua/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/lua/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/lua/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/lua/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/lua/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/lua/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/lua/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/lua/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/lua/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/lua/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/lua/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/lua/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/lua/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/lua/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/lua/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/lua/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/lua/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/lua/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/lua/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/lua/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/lua/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/lua/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/lua/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/lua/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/lua/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/lua/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/lua/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/lua/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/lua/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/lua/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/lua/branch/branch.if.else.scope b/resources/fixtures/scopes/lua/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/lua/branch/branch.if.else.scope rename to resources/fixtures/scopes/lua/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/lua/branch/branch.if.iteration.scope b/resources/fixtures/scopes/lua/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/lua/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/lua/branch/branch.if.scope b/resources/fixtures/scopes/lua/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/lua/branch/branch.if.scope rename to resources/fixtures/scopes/lua/branch/branch.if.scope diff --git a/data/fixtures/scopes/lua/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/lua/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/lua/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/lua/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/lua/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/lua/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/lua/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/lua/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/lua/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/lua/comment.block.scope b/resources/fixtures/scopes/lua/comment.block.scope similarity index 100% rename from data/fixtures/scopes/lua/comment.block.scope rename to resources/fixtures/scopes/lua/comment.block.scope diff --git a/data/fixtures/scopes/lua/comment.line.scope b/resources/fixtures/scopes/lua/comment.line.scope similarity index 100% rename from data/fixtures/scopes/lua/comment.line.scope rename to resources/fixtures/scopes/lua/comment.line.scope diff --git a/data/fixtures/scopes/lua/condition.doWhile.scope b/resources/fixtures/scopes/lua/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/lua/condition.doWhile.scope rename to resources/fixtures/scopes/lua/condition.doWhile.scope diff --git a/data/fixtures/scopes/lua/condition.for.scope b/resources/fixtures/scopes/lua/condition.for.scope similarity index 100% rename from data/fixtures/scopes/lua/condition.for.scope rename to resources/fixtures/scopes/lua/condition.for.scope diff --git a/data/fixtures/scopes/lua/condition.if.scope b/resources/fixtures/scopes/lua/condition.if.scope similarity index 100% rename from data/fixtures/scopes/lua/condition.if.scope rename to resources/fixtures/scopes/lua/condition.if.scope diff --git a/data/fixtures/scopes/lua/condition.while.scope b/resources/fixtures/scopes/lua/condition.while.scope similarity index 100% rename from data/fixtures/scopes/lua/condition.while.scope rename to resources/fixtures/scopes/lua/condition.while.scope diff --git a/data/fixtures/scopes/lua/disqualifyDelimiter.scope b/resources/fixtures/scopes/lua/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/lua/disqualifyDelimiter.scope rename to resources/fixtures/scopes/lua/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/lua/functionCall/functionCall.chain.scope b/resources/fixtures/scopes/lua/functionCall/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCall/functionCall.chain.scope rename to resources/fixtures/scopes/lua/functionCall/functionCall.chain.scope diff --git a/data/fixtures/scopes/lua/functionCall/functionCall.chain2.scope b/resources/fixtures/scopes/lua/functionCall/functionCall.chain2.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCall/functionCall.chain2.scope rename to resources/fixtures/scopes/lua/functionCall/functionCall.chain2.scope diff --git a/data/fixtures/scopes/lua/functionCall/functionCall.method.scope b/resources/fixtures/scopes/lua/functionCall/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCall/functionCall.method.scope rename to resources/fixtures/scopes/lua/functionCall/functionCall.method.scope diff --git a/data/fixtures/scopes/lua/functionCall/functionCall.method2.scope b/resources/fixtures/scopes/lua/functionCall/functionCall.method2.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCall/functionCall.method2.scope rename to resources/fixtures/scopes/lua/functionCall/functionCall.method2.scope diff --git a/data/fixtures/scopes/lua/functionCall/functionCall.scope b/resources/fixtures/scopes/lua/functionCall/functionCall.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCall/functionCall.scope rename to resources/fixtures/scopes/lua/functionCall/functionCall.scope diff --git a/data/fixtures/scopes/lua/functionCallee/functionCallee.chain.scope b/resources/fixtures/scopes/lua/functionCallee/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCallee/functionCallee.chain.scope rename to resources/fixtures/scopes/lua/functionCallee/functionCallee.chain.scope diff --git a/data/fixtures/scopes/lua/functionCallee/functionCallee.chain2.scope b/resources/fixtures/scopes/lua/functionCallee/functionCallee.chain2.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCallee/functionCallee.chain2.scope rename to resources/fixtures/scopes/lua/functionCallee/functionCallee.chain2.scope diff --git a/data/fixtures/scopes/lua/functionCallee/functionCallee.method.scope b/resources/fixtures/scopes/lua/functionCallee/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCallee/functionCallee.method.scope rename to resources/fixtures/scopes/lua/functionCallee/functionCallee.method.scope diff --git a/data/fixtures/scopes/lua/functionCallee/functionCallee.method2.scope b/resources/fixtures/scopes/lua/functionCallee/functionCallee.method2.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCallee/functionCallee.method2.scope rename to resources/fixtures/scopes/lua/functionCallee/functionCallee.method2.scope diff --git a/data/fixtures/scopes/lua/functionCallee/functionCallee.scope b/resources/fixtures/scopes/lua/functionCallee/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/lua/functionCallee/functionCallee.scope rename to resources/fixtures/scopes/lua/functionCallee/functionCallee.scope diff --git a/data/fixtures/scopes/lua/ifStatement.scope b/resources/fixtures/scopes/lua/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/lua/ifStatement.scope rename to resources/fixtures/scopes/lua/ifStatement.scope diff --git a/data/fixtures/scopes/lua/interior/interior.doWhile.scope b/resources/fixtures/scopes/lua/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.doWhile.scope rename to resources/fixtures/scopes/lua/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/lua/interior/interior.for.scope b/resources/fixtures/scopes/lua/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.for.scope rename to resources/fixtures/scopes/lua/interior/interior.for.scope diff --git a/data/fixtures/scopes/lua/interior/interior.foreach.scope b/resources/fixtures/scopes/lua/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.foreach.scope rename to resources/fixtures/scopes/lua/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/lua/interior/interior.function.scope b/resources/fixtures/scopes/lua/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.function.scope rename to resources/fixtures/scopes/lua/interior/interior.function.scope diff --git a/data/fixtures/scopes/lua/interior/interior.if.scope b/resources/fixtures/scopes/lua/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.if.scope rename to resources/fixtures/scopes/lua/interior/interior.if.scope diff --git a/data/fixtures/scopes/lua/interior/interior.lambda.scope b/resources/fixtures/scopes/lua/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.lambda.scope rename to resources/fixtures/scopes/lua/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/lua/interior/interior.method.scope b/resources/fixtures/scopes/lua/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.method.scope rename to resources/fixtures/scopes/lua/interior/interior.method.scope diff --git a/data/fixtures/scopes/lua/interior/interior.while.scope b/resources/fixtures/scopes/lua/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/lua/interior/interior.while.scope rename to resources/fixtures/scopes/lua/interior/interior.while.scope diff --git a/data/fixtures/scopes/lua/key.mapPair.iteration.scope b/resources/fixtures/scopes/lua/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/key.mapPair.iteration.scope rename to resources/fixtures/scopes/lua/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/lua/key.mapPair.scope b/resources/fixtures/scopes/lua/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/lua/key.mapPair.scope rename to resources/fixtures/scopes/lua/key.mapPair.scope diff --git a/data/fixtures/scopes/lua/list.scope b/resources/fixtures/scopes/lua/list.scope similarity index 100% rename from data/fixtures/scopes/lua/list.scope rename to resources/fixtures/scopes/lua/list.scope diff --git a/data/fixtures/scopes/lua/map.scope b/resources/fixtures/scopes/lua/map.scope similarity index 100% rename from data/fixtures/scopes/lua/map.scope rename to resources/fixtures/scopes/lua/map.scope diff --git a/data/fixtures/scopes/lua/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/lua/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/lua/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/lua/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/lua/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/lua/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/lua/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/lua/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/lua/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/lua/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/lua/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/lua/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/lua/name/name.argument.formal.method.scope b/resources/fixtures/scopes/lua/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/lua/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/lua/name/name.argument.formal.scope b/resources/fixtures/scopes/lua/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.argument.formal.scope rename to resources/fixtures/scopes/lua/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/lua/name/name.assignment.destructuring.scope b/resources/fixtures/scopes/lua/name/name.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.assignment.destructuring.scope rename to resources/fixtures/scopes/lua/name/name.assignment.destructuring.scope diff --git a/data/fixtures/scopes/lua/name/name.assignment.scope b/resources/fixtures/scopes/lua/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.assignment.scope rename to resources/fixtures/scopes/lua/name/name.assignment.scope diff --git a/data/fixtures/scopes/lua/name/name.assignment2.scope b/resources/fixtures/scopes/lua/name/name.assignment2.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.assignment2.scope rename to resources/fixtures/scopes/lua/name/name.assignment2.scope diff --git a/data/fixtures/scopes/lua/name/name.foreach.scope b/resources/fixtures/scopes/lua/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.foreach.scope rename to resources/fixtures/scopes/lua/name/name.foreach.scope diff --git a/data/fixtures/scopes/lua/name/name.function.scope b/resources/fixtures/scopes/lua/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.function.scope rename to resources/fixtures/scopes/lua/name/name.function.scope diff --git a/data/fixtures/scopes/lua/name/name.iteration.block.scope b/resources/fixtures/scopes/lua/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.iteration.block.scope rename to resources/fixtures/scopes/lua/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/lua/name/name.iteration.block2.scope b/resources/fixtures/scopes/lua/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.iteration.block2.scope rename to resources/fixtures/scopes/lua/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/lua/name/name.iteration.block3.scope b/resources/fixtures/scopes/lua/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.iteration.block3.scope rename to resources/fixtures/scopes/lua/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/lua/name/name.iteration.document.scope b/resources/fixtures/scopes/lua/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.iteration.document.scope rename to resources/fixtures/scopes/lua/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/lua/name/name.method.scope b/resources/fixtures/scopes/lua/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.method.scope rename to resources/fixtures/scopes/lua/name/name.method.scope diff --git a/data/fixtures/scopes/lua/name/name.variable.destructuring.scope b/resources/fixtures/scopes/lua/name/name.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.variable.destructuring.scope rename to resources/fixtures/scopes/lua/name/name.variable.destructuring.scope diff --git a/data/fixtures/scopes/lua/name/name.variable.initialized.scope b/resources/fixtures/scopes/lua/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.variable.initialized.scope rename to resources/fixtures/scopes/lua/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/lua/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/lua/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/lua/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/lua/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/lua/namedFunction.iteration.document.scope b/resources/fixtures/scopes/lua/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/lua/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/lua/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/lua/namedFunction.method.scope b/resources/fixtures/scopes/lua/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/lua/namedFunction.method.scope rename to resources/fixtures/scopes/lua/namedFunction.method.scope diff --git a/data/fixtures/scopes/lua/namedFunction.scope b/resources/fixtures/scopes/lua/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/lua/namedFunction.scope rename to resources/fixtures/scopes/lua/namedFunction.scope diff --git a/data/fixtures/scopes/lua/statement/statement.assignment.destructuring.scope b/resources/fixtures/scopes/lua/statement/statement.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.assignment.destructuring.scope rename to resources/fixtures/scopes/lua/statement/statement.assignment.destructuring.scope diff --git a/data/fixtures/scopes/lua/statement/statement.assignment.scope b/resources/fixtures/scopes/lua/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.assignment.scope rename to resources/fixtures/scopes/lua/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/lua/statement/statement.break.scope b/resources/fixtures/scopes/lua/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.break.scope rename to resources/fixtures/scopes/lua/statement/statement.break.scope diff --git a/data/fixtures/scopes/lua/statement/statement.doWhile.scope b/resources/fixtures/scopes/lua/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.doWhile.scope rename to resources/fixtures/scopes/lua/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/lua/statement/statement.for.scope b/resources/fixtures/scopes/lua/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.for.scope rename to resources/fixtures/scopes/lua/statement/statement.for.scope diff --git a/data/fixtures/scopes/lua/statement/statement.foreach.scope b/resources/fixtures/scopes/lua/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.foreach.scope rename to resources/fixtures/scopes/lua/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/lua/statement/statement.function.scope b/resources/fixtures/scopes/lua/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.function.scope rename to resources/fixtures/scopes/lua/statement/statement.function.scope diff --git a/data/fixtures/scopes/lua/statement/statement.functionCall.scope b/resources/fixtures/scopes/lua/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.functionCall.scope rename to resources/fixtures/scopes/lua/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/lua/statement/statement.if.scope b/resources/fixtures/scopes/lua/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.if.scope rename to resources/fixtures/scopes/lua/statement/statement.if.scope diff --git a/data/fixtures/scopes/lua/statement/statement.iteration.block.scope b/resources/fixtures/scopes/lua/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/lua/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/lua/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/lua/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/lua/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/lua/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/lua/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/lua/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/lua/statement/statement.iteration.document.scope b/resources/fixtures/scopes/lua/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/lua/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/lua/statement/statement.method.scope b/resources/fixtures/scopes/lua/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.method.scope rename to resources/fixtures/scopes/lua/statement/statement.method.scope diff --git a/data/fixtures/scopes/lua/statement/statement.return.scope b/resources/fixtures/scopes/lua/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.return.scope rename to resources/fixtures/scopes/lua/statement/statement.return.scope diff --git a/data/fixtures/scopes/lua/statement/statement.variable.destructuring.scope b/resources/fixtures/scopes/lua/statement/statement.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.variable.destructuring.scope rename to resources/fixtures/scopes/lua/statement/statement.variable.destructuring.scope diff --git a/data/fixtures/scopes/lua/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/lua/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/lua/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/lua/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/lua/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/lua/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/lua/statement/statement.while.scope b/resources/fixtures/scopes/lua/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/lua/statement/statement.while.scope rename to resources/fixtures/scopes/lua/statement/statement.while.scope diff --git a/data/fixtures/scopes/lua/string.multiLine.scope b/resources/fixtures/scopes/lua/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/string.multiLine.scope rename to resources/fixtures/scopes/lua/string.multiLine.scope diff --git a/data/fixtures/scopes/lua/string.singleLine.scope b/resources/fixtures/scopes/lua/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/string.singleLine.scope rename to resources/fixtures/scopes/lua/string.singleLine.scope diff --git a/data/fixtures/scopes/lua/textFragment.comment.block.scope b/resources/fixtures/scopes/lua/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/lua/textFragment.comment.block.scope rename to resources/fixtures/scopes/lua/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/lua/textFragment.comment.line.scope b/resources/fixtures/scopes/lua/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/lua/textFragment.comment.line.scope rename to resources/fixtures/scopes/lua/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/lua/textFragment.string.multiLine.scope b/resources/fixtures/scopes/lua/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/lua/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/lua/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/lua/textFragment.string.singleLine.scope b/resources/fixtures/scopes/lua/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/lua/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/lua/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/lua/value/value.assignment.destructuring.scope b/resources/fixtures/scopes/lua/value/value.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.assignment.destructuring.scope rename to resources/fixtures/scopes/lua/value/value.assignment.destructuring.scope diff --git a/data/fixtures/scopes/lua/value/value.assignment.scope b/resources/fixtures/scopes/lua/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.assignment.scope rename to resources/fixtures/scopes/lua/value/value.assignment.scope diff --git a/data/fixtures/scopes/lua/value/value.assignment2.scope b/resources/fixtures/scopes/lua/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.assignment2.scope rename to resources/fixtures/scopes/lua/value/value.assignment2.scope diff --git a/data/fixtures/scopes/lua/value/value.foreach.scope b/resources/fixtures/scopes/lua/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.foreach.scope rename to resources/fixtures/scopes/lua/value/value.foreach.scope diff --git a/data/fixtures/scopes/lua/value/value.iteration.block.scope b/resources/fixtures/scopes/lua/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.iteration.block.scope rename to resources/fixtures/scopes/lua/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/lua/value/value.iteration.block2.scope b/resources/fixtures/scopes/lua/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.iteration.block2.scope rename to resources/fixtures/scopes/lua/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/lua/value/value.iteration.block3.scope b/resources/fixtures/scopes/lua/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.iteration.block3.scope rename to resources/fixtures/scopes/lua/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/lua/value/value.iteration.document.scope b/resources/fixtures/scopes/lua/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.iteration.document.scope rename to resources/fixtures/scopes/lua/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/lua/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/lua/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/lua/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/lua/value/value.mapPair.scope b/resources/fixtures/scopes/lua/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.mapPair.scope rename to resources/fixtures/scopes/lua/value/value.mapPair.scope diff --git a/data/fixtures/scopes/lua/value/value.return.scope b/resources/fixtures/scopes/lua/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.return.scope rename to resources/fixtures/scopes/lua/value/value.return.scope diff --git a/data/fixtures/scopes/lua/value/value.variable.destructuring.scope b/resources/fixtures/scopes/lua/value/value.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.variable.destructuring.scope rename to resources/fixtures/scopes/lua/value/value.variable.destructuring.scope diff --git a/data/fixtures/scopes/lua/value/value.variable.scope b/resources/fixtures/scopes/lua/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/lua/value/value.variable.scope rename to resources/fixtures/scopes/lua/value/value.variable.scope diff --git a/data/fixtures/scopes/markdown/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/markdown/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/markdown/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/markdown/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/markdown/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/markdown/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/markdown/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/markdown/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/markdown/comment.block.scope b/resources/fixtures/scopes/markdown/comment.block.scope similarity index 100% rename from data/fixtures/scopes/markdown/comment.block.scope rename to resources/fixtures/scopes/markdown/comment.block.scope diff --git a/data/fixtures/scopes/markdown/interior.cell.scope b/resources/fixtures/scopes/markdown/interior.cell.scope similarity index 100% rename from data/fixtures/scopes/markdown/interior.cell.scope rename to resources/fixtures/scopes/markdown/interior.cell.scope diff --git a/data/fixtures/scopes/markdown/interior.cell2.scope b/resources/fixtures/scopes/markdown/interior.cell2.scope similarity index 100% rename from data/fixtures/scopes/markdown/interior.cell2.scope rename to resources/fixtures/scopes/markdown/interior.cell2.scope diff --git a/data/fixtures/scopes/markdown/list.scope b/resources/fixtures/scopes/markdown/list.scope similarity index 100% rename from data/fixtures/scopes/markdown/list.scope rename to resources/fixtures/scopes/markdown/list.scope diff --git a/data/fixtures/scopes/markdown/notebookCell.scope b/resources/fixtures/scopes/markdown/notebookCell.scope similarity index 100% rename from data/fixtures/scopes/markdown/notebookCell.scope rename to resources/fixtures/scopes/markdown/notebookCell.scope diff --git a/data/fixtures/scopes/markdown/notebookCell2.scope b/resources/fixtures/scopes/markdown/notebookCell2.scope similarity index 100% rename from data/fixtures/scopes/markdown/notebookCell2.scope rename to resources/fixtures/scopes/markdown/notebookCell2.scope diff --git a/data/fixtures/scopes/markdown/section.iteration.document.scope b/resources/fixtures/scopes/markdown/section.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/markdown/section.iteration.document.scope rename to resources/fixtures/scopes/markdown/section.iteration.document.scope diff --git a/data/fixtures/scopes/markdown/section.iteration.parent.scope b/resources/fixtures/scopes/markdown/section.iteration.parent.scope similarity index 100% rename from data/fixtures/scopes/markdown/section.iteration.parent.scope rename to resources/fixtures/scopes/markdown/section.iteration.parent.scope diff --git a/data/fixtures/scopes/markdown/section.scope b/resources/fixtures/scopes/markdown/section.scope similarity index 100% rename from data/fixtures/scopes/markdown/section.scope rename to resources/fixtures/scopes/markdown/section.scope diff --git a/data/fixtures/scopes/markdown/textFragment.comment.block.scope b/resources/fixtures/scopes/markdown/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/markdown/textFragment.comment.block.scope rename to resources/fixtures/scopes/markdown/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/php/anonymousFunction.scope b/resources/fixtures/scopes/php/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/php/anonymousFunction.scope rename to resources/fixtures/scopes/php/anonymousFunction.scope diff --git a/data/fixtures/scopes/php/anonymousFunction2.scope b/resources/fixtures/scopes/php/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/php/anonymousFunction2.scope rename to resources/fixtures/scopes/php/anonymousFunction2.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/php/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/php/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/php/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/php/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/php/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/php/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/php/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/php/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/php/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/php/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/php/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/php/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/php/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/php/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/php/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/php/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/php/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/php/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.catch.scope b/resources/fixtures/scopes/php/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/php/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/php/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/php/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/php/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/php/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/php/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/php/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/php/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/php/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/php/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/php/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/php/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty2.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty2.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty2.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.empty2.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine2.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine2.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.multiLine2.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine2.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine2.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.lambda.singleLine2.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/php/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/php/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/php/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/php/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/php/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/php/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/php/branch/branch.if.else.scope b/resources/fixtures/scopes/php/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.if.else.scope rename to resources/fixtures/scopes/php/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/php/branch/branch.if.iteration.scope b/resources/fixtures/scopes/php/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/php/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/php/branch/branch.if.scope b/resources/fixtures/scopes/php/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.if.scope rename to resources/fixtures/scopes/php/branch/branch.if.scope diff --git a/data/fixtures/scopes/php/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/php/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/php/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/php/branch/branch.switchCase.scope b/resources/fixtures/scopes/php/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.switchCase.scope rename to resources/fixtures/scopes/php/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/php/branch/branch.switchCase2.scope b/resources/fixtures/scopes/php/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/php/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/php/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/php/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/php/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/php/branch/branch.ternary.scope b/resources/fixtures/scopes/php/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.ternary.scope rename to resources/fixtures/scopes/php/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/php/branch/branch.try.iteration.scope b/resources/fixtures/scopes/php/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/php/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/php/branch/branch.try.scope b/resources/fixtures/scopes/php/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/php/branch/branch.try.scope rename to resources/fixtures/scopes/php/branch/branch.try.scope diff --git a/data/fixtures/scopes/php/class.iteration.document.scope b/resources/fixtures/scopes/php/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/php/class.iteration.document.scope rename to resources/fixtures/scopes/php/class.iteration.document.scope diff --git a/data/fixtures/scopes/php/class.scope b/resources/fixtures/scopes/php/class.scope similarity index 100% rename from data/fixtures/scopes/php/class.scope rename to resources/fixtures/scopes/php/class.scope diff --git a/data/fixtures/scopes/php/comment.block.scope b/resources/fixtures/scopes/php/comment.block.scope similarity index 100% rename from data/fixtures/scopes/php/comment.block.scope rename to resources/fixtures/scopes/php/comment.block.scope diff --git a/data/fixtures/scopes/php/comment.line.scope b/resources/fixtures/scopes/php/comment.line.scope similarity index 100% rename from data/fixtures/scopes/php/comment.line.scope rename to resources/fixtures/scopes/php/comment.line.scope diff --git a/data/fixtures/scopes/php/comment.line2.scope b/resources/fixtures/scopes/php/comment.line2.scope similarity index 100% rename from data/fixtures/scopes/php/comment.line2.scope rename to resources/fixtures/scopes/php/comment.line2.scope diff --git a/data/fixtures/scopes/php/condition/condition.doWhile.scope b/resources/fixtures/scopes/php/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/php/condition/condition.doWhile.scope rename to resources/fixtures/scopes/php/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/php/condition/condition.for.scope b/resources/fixtures/scopes/php/condition/condition.for.scope similarity index 100% rename from data/fixtures/scopes/php/condition/condition.for.scope rename to resources/fixtures/scopes/php/condition/condition.for.scope diff --git a/data/fixtures/scopes/php/condition/condition.if.scope b/resources/fixtures/scopes/php/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/php/condition/condition.if.scope rename to resources/fixtures/scopes/php/condition/condition.if.scope diff --git a/data/fixtures/scopes/php/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/php/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/php/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/php/condition/condition.switchCase.scope b/resources/fixtures/scopes/php/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/php/condition/condition.switchCase.scope rename to resources/fixtures/scopes/php/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/php/condition/condition.ternary.scope b/resources/fixtures/scopes/php/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/php/condition/condition.ternary.scope rename to resources/fixtures/scopes/php/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/php/condition/condition.while.scope b/resources/fixtures/scopes/php/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/php/condition/condition.while.scope rename to resources/fixtures/scopes/php/condition/condition.while.scope diff --git a/data/fixtures/scopes/php/disqualifyDelimiter.scope b/resources/fixtures/scopes/php/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/php/disqualifyDelimiter.scope rename to resources/fixtures/scopes/php/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/php/functionCall/functionCall.chain.scope b/resources/fixtures/scopes/php/functionCall/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/php/functionCall/functionCall.chain.scope rename to resources/fixtures/scopes/php/functionCall/functionCall.chain.scope diff --git a/data/fixtures/scopes/php/functionCall/functionCall.constructor.scope b/resources/fixtures/scopes/php/functionCall/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/functionCall/functionCall.constructor.scope rename to resources/fixtures/scopes/php/functionCall/functionCall.constructor.scope diff --git a/data/fixtures/scopes/php/functionCall/functionCall.method.scope b/resources/fixtures/scopes/php/functionCall/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/php/functionCall/functionCall.method.scope rename to resources/fixtures/scopes/php/functionCall/functionCall.method.scope diff --git a/data/fixtures/scopes/php/functionCall/functionCall.method2.scope b/resources/fixtures/scopes/php/functionCall/functionCall.method2.scope similarity index 100% rename from data/fixtures/scopes/php/functionCall/functionCall.method2.scope rename to resources/fixtures/scopes/php/functionCall/functionCall.method2.scope diff --git a/data/fixtures/scopes/php/functionCall/functionCall.scope b/resources/fixtures/scopes/php/functionCall/functionCall.scope similarity index 100% rename from data/fixtures/scopes/php/functionCall/functionCall.scope rename to resources/fixtures/scopes/php/functionCall/functionCall.scope diff --git a/data/fixtures/scopes/php/functionCallee/functionCallee.chain.scope b/resources/fixtures/scopes/php/functionCallee/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/php/functionCallee/functionCallee.chain.scope rename to resources/fixtures/scopes/php/functionCallee/functionCallee.chain.scope diff --git a/data/fixtures/scopes/php/functionCallee/functionCallee.constructor.scope b/resources/fixtures/scopes/php/functionCallee/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/functionCallee/functionCallee.constructor.scope rename to resources/fixtures/scopes/php/functionCallee/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/php/functionCallee/functionCallee.method.scope b/resources/fixtures/scopes/php/functionCallee/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/php/functionCallee/functionCallee.method.scope rename to resources/fixtures/scopes/php/functionCallee/functionCallee.method.scope diff --git a/data/fixtures/scopes/php/functionCallee/functionCallee.method2.scope b/resources/fixtures/scopes/php/functionCallee/functionCallee.method2.scope similarity index 100% rename from data/fixtures/scopes/php/functionCallee/functionCallee.method2.scope rename to resources/fixtures/scopes/php/functionCallee/functionCallee.method2.scope diff --git a/data/fixtures/scopes/php/functionCallee/functionCallee.scope b/resources/fixtures/scopes/php/functionCallee/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/php/functionCallee/functionCallee.scope rename to resources/fixtures/scopes/php/functionCallee/functionCallee.scope diff --git a/data/fixtures/scopes/php/ifStatement.scope b/resources/fixtures/scopes/php/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/php/ifStatement.scope rename to resources/fixtures/scopes/php/ifStatement.scope diff --git a/data/fixtures/scopes/php/interior/interior.class.scope b/resources/fixtures/scopes/php/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.class.scope rename to resources/fixtures/scopes/php/interior/interior.class.scope diff --git a/data/fixtures/scopes/php/interior/interior.constructor.scope b/resources/fixtures/scopes/php/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.constructor.scope rename to resources/fixtures/scopes/php/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/php/interior/interior.doWhile.scope b/resources/fixtures/scopes/php/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.doWhile.scope rename to resources/fixtures/scopes/php/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/php/interior/interior.enum.scope b/resources/fixtures/scopes/php/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.enum.scope rename to resources/fixtures/scopes/php/interior/interior.enum.scope diff --git a/data/fixtures/scopes/php/interior/interior.for.scope b/resources/fixtures/scopes/php/interior/interior.for.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.for.scope rename to resources/fixtures/scopes/php/interior/interior.for.scope diff --git a/data/fixtures/scopes/php/interior/interior.foreach.scope b/resources/fixtures/scopes/php/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.foreach.scope rename to resources/fixtures/scopes/php/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/php/interior/interior.function.scope b/resources/fixtures/scopes/php/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.function.scope rename to resources/fixtures/scopes/php/interior/interior.function.scope diff --git a/data/fixtures/scopes/php/interior/interior.if.scope b/resources/fixtures/scopes/php/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.if.scope rename to resources/fixtures/scopes/php/interior/interior.if.scope diff --git a/data/fixtures/scopes/php/interior/interior.interface.scope b/resources/fixtures/scopes/php/interior/interior.interface.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.interface.scope rename to resources/fixtures/scopes/php/interior/interior.interface.scope diff --git a/data/fixtures/scopes/php/interior/interior.lambda.scope b/resources/fixtures/scopes/php/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.lambda.scope rename to resources/fixtures/scopes/php/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/php/interior/interior.method.scope b/resources/fixtures/scopes/php/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.method.scope rename to resources/fixtures/scopes/php/interior/interior.method.scope diff --git a/data/fixtures/scopes/php/interior/interior.namespace.scope b/resources/fixtures/scopes/php/interior/interior.namespace.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.namespace.scope rename to resources/fixtures/scopes/php/interior/interior.namespace.scope diff --git a/data/fixtures/scopes/php/interior/interior.switch.scope b/resources/fixtures/scopes/php/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.switch.scope rename to resources/fixtures/scopes/php/interior/interior.switch.scope diff --git a/data/fixtures/scopes/php/interior/interior.switchCase.scope b/resources/fixtures/scopes/php/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.switchCase.scope rename to resources/fixtures/scopes/php/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/php/interior/interior.switchCase2.scope b/resources/fixtures/scopes/php/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/php/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/php/interior/interior.try.scope b/resources/fixtures/scopes/php/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.try.scope rename to resources/fixtures/scopes/php/interior/interior.try.scope diff --git a/data/fixtures/scopes/php/interior/interior.while.scope b/resources/fixtures/scopes/php/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/php/interior/interior.while.scope rename to resources/fixtures/scopes/php/interior/interior.while.scope diff --git a/data/fixtures/scopes/php/key.mapPair.scope b/resources/fixtures/scopes/php/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/php/key.mapPair.scope rename to resources/fixtures/scopes/php/key.mapPair.scope diff --git a/data/fixtures/scopes/php/key/key.mapPair.iteration.scope b/resources/fixtures/scopes/php/key/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/key/key.mapPair.iteration.scope rename to resources/fixtures/scopes/php/key/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/php/list.scope b/resources/fixtures/scopes/php/list.scope similarity index 100% rename from data/fixtures/scopes/php/list.scope rename to resources/fixtures/scopes/php/list.scope diff --git a/data/fixtures/scopes/php/map.scope b/resources/fixtures/scopes/php/map.scope similarity index 100% rename from data/fixtures/scopes/php/map.scope rename to resources/fixtures/scopes/php/map.scope diff --git a/data/fixtures/scopes/php/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/php/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/php/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/php/name/name.argument.actual.scope b/resources/fixtures/scopes/php/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.actual.scope rename to resources/fixtures/scopes/php/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/php/name/name.argument.catch.scope b/resources/fixtures/scopes/php/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.catch.scope rename to resources/fixtures/scopes/php/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/php/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/php/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/php/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/php/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/php/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/php/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.method.scope b/resources/fixtures/scopes/php/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal.scope b/resources/fixtures/scopes/php/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal.scope rename to resources/fixtures/scopes/php/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/php/name/name.argument.formal2.scope b/resources/fixtures/scopes/php/name/name.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.argument.formal2.scope rename to resources/fixtures/scopes/php/name/name.argument.formal2.scope diff --git a/data/fixtures/scopes/php/name/name.assignment.compound.scope b/resources/fixtures/scopes/php/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.assignment.compound.scope rename to resources/fixtures/scopes/php/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/php/name/name.assignment.scope b/resources/fixtures/scopes/php/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.assignment.scope rename to resources/fixtures/scopes/php/name/name.assignment.scope diff --git a/data/fixtures/scopes/php/name/name.assignment2.scope b/resources/fixtures/scopes/php/name/name.assignment2.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.assignment2.scope rename to resources/fixtures/scopes/php/name/name.assignment2.scope diff --git a/data/fixtures/scopes/php/name/name.class.scope b/resources/fixtures/scopes/php/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.class.scope rename to resources/fixtures/scopes/php/name/name.class.scope diff --git a/data/fixtures/scopes/php/name/name.constructor.scope b/resources/fixtures/scopes/php/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.constructor.scope rename to resources/fixtures/scopes/php/name/name.constructor.scope diff --git a/data/fixtures/scopes/php/name/name.enum.scope b/resources/fixtures/scopes/php/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.enum.scope rename to resources/fixtures/scopes/php/name/name.enum.scope diff --git a/data/fixtures/scopes/php/name/name.field.class.scope b/resources/fixtures/scopes/php/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.field.class.scope rename to resources/fixtures/scopes/php/name/name.field.class.scope diff --git a/data/fixtures/scopes/php/name/name.field.enum.scope b/resources/fixtures/scopes/php/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.field.enum.scope rename to resources/fixtures/scopes/php/name/name.field.enum.scope diff --git a/data/fixtures/scopes/php/name/name.field.interface.scope b/resources/fixtures/scopes/php/name/name.field.interface.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.field.interface.scope rename to resources/fixtures/scopes/php/name/name.field.interface.scope diff --git a/data/fixtures/scopes/php/name/name.foreach.scope b/resources/fixtures/scopes/php/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.foreach.scope rename to resources/fixtures/scopes/php/name/name.foreach.scope diff --git a/data/fixtures/scopes/php/name/name.function.scope b/resources/fixtures/scopes/php/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.function.scope rename to resources/fixtures/scopes/php/name/name.function.scope diff --git a/data/fixtures/scopes/php/name/name.interface.scope b/resources/fixtures/scopes/php/name/name.interface.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.interface.scope rename to resources/fixtures/scopes/php/name/name.interface.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.block.scope b/resources/fixtures/scopes/php/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.block.scope rename to resources/fixtures/scopes/php/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.block2.scope b/resources/fixtures/scopes/php/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.block2.scope rename to resources/fixtures/scopes/php/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.block3.scope b/resources/fixtures/scopes/php/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.block3.scope rename to resources/fixtures/scopes/php/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.block4.scope b/resources/fixtures/scopes/php/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.block4.scope rename to resources/fixtures/scopes/php/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.class.scope b/resources/fixtures/scopes/php/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.class.scope rename to resources/fixtures/scopes/php/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.document.scope b/resources/fixtures/scopes/php/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.document.scope rename to resources/fixtures/scopes/php/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.enum.scope b/resources/fixtures/scopes/php/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.enum.scope rename to resources/fixtures/scopes/php/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/php/name/name.iteration.interface.scope b/resources/fixtures/scopes/php/name/name.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.iteration.interface.scope rename to resources/fixtures/scopes/php/name/name.iteration.interface.scope diff --git a/data/fixtures/scopes/php/name/name.method.interface.scope b/resources/fixtures/scopes/php/name/name.method.interface.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.method.interface.scope rename to resources/fixtures/scopes/php/name/name.method.interface.scope diff --git a/data/fixtures/scopes/php/name/name.method.scope b/resources/fixtures/scopes/php/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.method.scope rename to resources/fixtures/scopes/php/name/name.method.scope diff --git a/data/fixtures/scopes/php/name/name.namespace.scope b/resources/fixtures/scopes/php/name/name.namespace.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.namespace.scope rename to resources/fixtures/scopes/php/name/name.namespace.scope diff --git a/data/fixtures/scopes/php/name/name.variable.initialized.scope b/resources/fixtures/scopes/php/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/php/name/name.variable.initialized.scope rename to resources/fixtures/scopes/php/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/php/namedFunction.constructor.scope b/resources/fixtures/scopes/php/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/namedFunction.constructor.scope rename to resources/fixtures/scopes/php/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/php/namedFunction.iteration.class.scope b/resources/fixtures/scopes/php/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/php/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/php/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/php/namedFunction.iteration.document.scope b/resources/fixtures/scopes/php/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/php/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/php/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/php/namedFunction.method.scope b/resources/fixtures/scopes/php/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/php/namedFunction.method.scope rename to resources/fixtures/scopes/php/namedFunction.method.scope diff --git a/data/fixtures/scopes/php/namedFunction.scope b/resources/fixtures/scopes/php/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/php/namedFunction.scope rename to resources/fixtures/scopes/php/namedFunction.scope diff --git a/data/fixtures/scopes/php/namedFunction2.scope b/resources/fixtures/scopes/php/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/php/namedFunction2.scope rename to resources/fixtures/scopes/php/namedFunction2.scope diff --git a/data/fixtures/scopes/php/namedFunction3.scope b/resources/fixtures/scopes/php/namedFunction3.scope similarity index 100% rename from data/fixtures/scopes/php/namedFunction3.scope rename to resources/fixtures/scopes/php/namedFunction3.scope diff --git a/data/fixtures/scopes/php/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/php/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/php/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/php/statement/statement.assignment.scope b/resources/fixtures/scopes/php/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.assignment.scope rename to resources/fixtures/scopes/php/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/php/statement/statement.break.scope b/resources/fixtures/scopes/php/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.break.scope rename to resources/fixtures/scopes/php/statement/statement.break.scope diff --git a/data/fixtures/scopes/php/statement/statement.class.scope b/resources/fixtures/scopes/php/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.class.scope rename to resources/fixtures/scopes/php/statement/statement.class.scope diff --git a/data/fixtures/scopes/php/statement/statement.constructor.scope b/resources/fixtures/scopes/php/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.constructor.scope rename to resources/fixtures/scopes/php/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/php/statement/statement.continue.scope b/resources/fixtures/scopes/php/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.continue.scope rename to resources/fixtures/scopes/php/statement/statement.continue.scope diff --git a/data/fixtures/scopes/php/statement/statement.doWhile.scope b/resources/fixtures/scopes/php/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.doWhile.scope rename to resources/fixtures/scopes/php/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/php/statement/statement.enum.scope b/resources/fixtures/scopes/php/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.enum.scope rename to resources/fixtures/scopes/php/statement/statement.enum.scope diff --git a/data/fixtures/scopes/php/statement/statement.field.class.scope b/resources/fixtures/scopes/php/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.field.class.scope rename to resources/fixtures/scopes/php/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/php/statement/statement.field.interface.scope b/resources/fixtures/scopes/php/statement/statement.field.interface.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.field.interface.scope rename to resources/fixtures/scopes/php/statement/statement.field.interface.scope diff --git a/data/fixtures/scopes/php/statement/statement.field.interface2.scope b/resources/fixtures/scopes/php/statement/statement.field.interface2.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.field.interface2.scope rename to resources/fixtures/scopes/php/statement/statement.field.interface2.scope diff --git a/data/fixtures/scopes/php/statement/statement.for.scope b/resources/fixtures/scopes/php/statement/statement.for.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.for.scope rename to resources/fixtures/scopes/php/statement/statement.for.scope diff --git a/data/fixtures/scopes/php/statement/statement.foreach.scope b/resources/fixtures/scopes/php/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.foreach.scope rename to resources/fixtures/scopes/php/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/php/statement/statement.function.scope b/resources/fixtures/scopes/php/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.function.scope rename to resources/fixtures/scopes/php/statement/statement.function.scope diff --git a/data/fixtures/scopes/php/statement/statement.functionCall.scope b/resources/fixtures/scopes/php/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.functionCall.scope rename to resources/fixtures/scopes/php/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/php/statement/statement.if.scope b/resources/fixtures/scopes/php/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.if.scope rename to resources/fixtures/scopes/php/statement/statement.if.scope diff --git a/data/fixtures/scopes/php/statement/statement.import.scope b/resources/fixtures/scopes/php/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.import.scope rename to resources/fixtures/scopes/php/statement/statement.import.scope diff --git a/data/fixtures/scopes/php/statement/statement.interface.scope b/resources/fixtures/scopes/php/statement/statement.interface.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.interface.scope rename to resources/fixtures/scopes/php/statement/statement.interface.scope diff --git a/data/fixtures/scopes/php/statement/statement.iteration.block.scope b/resources/fixtures/scopes/php/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/php/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/php/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/php/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/php/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/php/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/php/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/php/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/php/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/php/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/php/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/php/statement/statement.iteration.class.scope b/resources/fixtures/scopes/php/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/php/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/php/statement/statement.iteration.document.scope b/resources/fixtures/scopes/php/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/php/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/php/statement/statement.iteration.interface.scope b/resources/fixtures/scopes/php/statement/statement.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.iteration.interface.scope rename to resources/fixtures/scopes/php/statement/statement.iteration.interface.scope diff --git a/data/fixtures/scopes/php/statement/statement.method.interface.scope b/resources/fixtures/scopes/php/statement/statement.method.interface.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.method.interface.scope rename to resources/fixtures/scopes/php/statement/statement.method.interface.scope diff --git a/data/fixtures/scopes/php/statement/statement.method.scope b/resources/fixtures/scopes/php/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.method.scope rename to resources/fixtures/scopes/php/statement/statement.method.scope diff --git a/data/fixtures/scopes/php/statement/statement.namespace.scope b/resources/fixtures/scopes/php/statement/statement.namespace.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.namespace.scope rename to resources/fixtures/scopes/php/statement/statement.namespace.scope diff --git a/data/fixtures/scopes/php/statement/statement.return.scope b/resources/fixtures/scopes/php/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.return.scope rename to resources/fixtures/scopes/php/statement/statement.return.scope diff --git a/data/fixtures/scopes/php/statement/statement.switch.scope b/resources/fixtures/scopes/php/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.switch.scope rename to resources/fixtures/scopes/php/statement/statement.switch.scope diff --git a/data/fixtures/scopes/php/statement/statement.throw.scope b/resources/fixtures/scopes/php/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.throw.scope rename to resources/fixtures/scopes/php/statement/statement.throw.scope diff --git a/data/fixtures/scopes/php/statement/statement.try.scope b/resources/fixtures/scopes/php/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.try.scope rename to resources/fixtures/scopes/php/statement/statement.try.scope diff --git a/data/fixtures/scopes/php/statement/statement.update.scope b/resources/fixtures/scopes/php/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.update.scope rename to resources/fixtures/scopes/php/statement/statement.update.scope diff --git a/data/fixtures/scopes/php/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/php/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/php/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/php/statement/statement.while.scope b/resources/fixtures/scopes/php/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.while.scope rename to resources/fixtures/scopes/php/statement/statement.while.scope diff --git a/data/fixtures/scopes/php/statement/statement.yield.scope b/resources/fixtures/scopes/php/statement/statement.yield.scope similarity index 100% rename from data/fixtures/scopes/php/statement/statement.yield.scope rename to resources/fixtures/scopes/php/statement/statement.yield.scope diff --git a/data/fixtures/scopes/php/string.multiLine.scope b/resources/fixtures/scopes/php/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/string.multiLine.scope rename to resources/fixtures/scopes/php/string.multiLine.scope diff --git a/data/fixtures/scopes/php/string.singleLine.scope b/resources/fixtures/scopes/php/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/string.singleLine.scope rename to resources/fixtures/scopes/php/string.singleLine.scope diff --git a/data/fixtures/scopes/php/textFragment.comment.block.scope b/resources/fixtures/scopes/php/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/php/textFragment.comment.block.scope rename to resources/fixtures/scopes/php/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/php/textFragment.comment.line.scope b/resources/fixtures/scopes/php/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/php/textFragment.comment.line.scope rename to resources/fixtures/scopes/php/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/php/textFragment.string.multiLine.scope b/resources/fixtures/scopes/php/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/php/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/php/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/php/textFragment.string.singleLine.scope b/resources/fixtures/scopes/php/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/php/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/php/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/php/type/type.argument.catch.scope b/resources/fixtures/scopes/php/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.catch.scope rename to resources/fixtures/scopes/php/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/php/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/php/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/php/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/php/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/php/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/php/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.method.scope b/resources/fixtures/scopes/php/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal.scope b/resources/fixtures/scopes/php/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal.scope rename to resources/fixtures/scopes/php/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/php/type/type.argument.formal2.scope b/resources/fixtures/scopes/php/type/type.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.argument.formal2.scope rename to resources/fixtures/scopes/php/type/type.argument.formal2.scope diff --git a/data/fixtures/scopes/php/type/type.cast.scope b/resources/fixtures/scopes/php/type/type.cast.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.cast.scope rename to resources/fixtures/scopes/php/type/type.cast.scope diff --git a/data/fixtures/scopes/php/type/type.class.scope b/resources/fixtures/scopes/php/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.class.scope rename to resources/fixtures/scopes/php/type/type.class.scope diff --git a/data/fixtures/scopes/php/type/type.enum.scope b/resources/fixtures/scopes/php/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.enum.scope rename to resources/fixtures/scopes/php/type/type.enum.scope diff --git a/data/fixtures/scopes/php/type/type.field.class.scope b/resources/fixtures/scopes/php/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.field.class.scope rename to resources/fixtures/scopes/php/type/type.field.class.scope diff --git a/data/fixtures/scopes/php/type/type.field.interface.scope b/resources/fixtures/scopes/php/type/type.field.interface.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.field.interface.scope rename to resources/fixtures/scopes/php/type/type.field.interface.scope diff --git a/data/fixtures/scopes/php/type/type.interface.scope b/resources/fixtures/scopes/php/type/type.interface.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.interface.scope rename to resources/fixtures/scopes/php/type/type.interface.scope diff --git a/data/fixtures/scopes/php/type/type.iteration.class.scope b/resources/fixtures/scopes/php/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.iteration.class.scope rename to resources/fixtures/scopes/php/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/php/type/type.iteration.document.scope b/resources/fixtures/scopes/php/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.iteration.document.scope rename to resources/fixtures/scopes/php/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/php/type/type.iteration.interface.scope b/resources/fixtures/scopes/php/type/type.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.iteration.interface.scope rename to resources/fixtures/scopes/php/type/type.iteration.interface.scope diff --git a/data/fixtures/scopes/php/type/type.return.lambda.scope b/resources/fixtures/scopes/php/type/type.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.return.lambda.scope rename to resources/fixtures/scopes/php/type/type.return.lambda.scope diff --git a/data/fixtures/scopes/php/type/type.return.lambda2.scope b/resources/fixtures/scopes/php/type/type.return.lambda2.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.return.lambda2.scope rename to resources/fixtures/scopes/php/type/type.return.lambda2.scope diff --git a/data/fixtures/scopes/php/type/type.return.method.scope b/resources/fixtures/scopes/php/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.return.method.scope rename to resources/fixtures/scopes/php/type/type.return.method.scope diff --git a/data/fixtures/scopes/php/type/type.return.scope b/resources/fixtures/scopes/php/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/php/type/type.return.scope rename to resources/fixtures/scopes/php/type/type.return.scope diff --git a/data/fixtures/scopes/php/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/php/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/php/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/php/value/value.argument.actual.scope b/resources/fixtures/scopes/php/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.actual.scope rename to resources/fixtures/scopes/php/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/php/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/php/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/php/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/php/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/php/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/php/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.method.scope b/resources/fixtures/scopes/php/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/php/value/value.argument.formal.scope b/resources/fixtures/scopes/php/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.argument.formal.scope rename to resources/fixtures/scopes/php/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/php/value/value.assignment.compound.scope b/resources/fixtures/scopes/php/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.assignment.compound.scope rename to resources/fixtures/scopes/php/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/php/value/value.assignment.scope b/resources/fixtures/scopes/php/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.assignment.scope rename to resources/fixtures/scopes/php/value/value.assignment.scope diff --git a/data/fixtures/scopes/php/value/value.assignment2.scope b/resources/fixtures/scopes/php/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.assignment2.scope rename to resources/fixtures/scopes/php/value/value.assignment2.scope diff --git a/data/fixtures/scopes/php/value/value.field.class.scope b/resources/fixtures/scopes/php/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.field.class.scope rename to resources/fixtures/scopes/php/value/value.field.class.scope diff --git a/data/fixtures/scopes/php/value/value.field.enum.scope b/resources/fixtures/scopes/php/value/value.field.enum.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.field.enum.scope rename to resources/fixtures/scopes/php/value/value.field.enum.scope diff --git a/data/fixtures/scopes/php/value/value.field.interface.scope b/resources/fixtures/scopes/php/value/value.field.interface.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.field.interface.scope rename to resources/fixtures/scopes/php/value/value.field.interface.scope diff --git a/data/fixtures/scopes/php/value/value.foreach.scope b/resources/fixtures/scopes/php/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.foreach.scope rename to resources/fixtures/scopes/php/value/value.foreach.scope diff --git a/data/fixtures/scopes/php/value/value.iteration.block.scope b/resources/fixtures/scopes/php/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.iteration.block.scope rename to resources/fixtures/scopes/php/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/php/value/value.iteration.block2.scope b/resources/fixtures/scopes/php/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.iteration.block2.scope rename to resources/fixtures/scopes/php/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/php/value/value.iteration.block3.scope b/resources/fixtures/scopes/php/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.iteration.block3.scope rename to resources/fixtures/scopes/php/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/php/value/value.iteration.block4.scope b/resources/fixtures/scopes/php/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.iteration.block4.scope rename to resources/fixtures/scopes/php/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/php/value/value.iteration.class.scope b/resources/fixtures/scopes/php/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.iteration.class.scope rename to resources/fixtures/scopes/php/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/php/value/value.iteration.document.scope b/resources/fixtures/scopes/php/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.iteration.document.scope rename to resources/fixtures/scopes/php/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/php/value/value.iteration.enum.scope b/resources/fixtures/scopes/php/value/value.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.iteration.enum.scope rename to resources/fixtures/scopes/php/value/value.iteration.enum.scope diff --git a/data/fixtures/scopes/php/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/php/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/php/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/php/value/value.mapPair.scope b/resources/fixtures/scopes/php/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.mapPair.scope rename to resources/fixtures/scopes/php/value/value.mapPair.scope diff --git a/data/fixtures/scopes/php/value/value.return.lambda.scope b/resources/fixtures/scopes/php/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.return.lambda.scope rename to resources/fixtures/scopes/php/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/php/value/value.return.scope b/resources/fixtures/scopes/php/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.return.scope rename to resources/fixtures/scopes/php/value/value.return.scope diff --git a/data/fixtures/scopes/php/value/value.switch.scope b/resources/fixtures/scopes/php/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.switch.scope rename to resources/fixtures/scopes/php/value/value.switch.scope diff --git a/data/fixtures/scopes/php/value/value.throw.scope b/resources/fixtures/scopes/php/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.throw.scope rename to resources/fixtures/scopes/php/value/value.throw.scope diff --git a/data/fixtures/scopes/php/value/value.variable.scope b/resources/fixtures/scopes/php/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.variable.scope rename to resources/fixtures/scopes/php/value/value.variable.scope diff --git a/data/fixtures/scopes/php/value/value.yield.scope b/resources/fixtures/scopes/php/value/value.yield.scope similarity index 100% rename from data/fixtures/scopes/php/value/value.yield.scope rename to resources/fixtures/scopes/php/value/value.yield.scope diff --git a/data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.iteration.scope b/resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.iteration.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.iteration.scope rename to resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.iteration.scope diff --git a/data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.scope b/resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.scope rename to resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence.scope diff --git a/data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence2.scope b/resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence2.scope rename to resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence2.scope diff --git a/data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence3.scope b/resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence3.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedNonWhitespaceSequence3.scope rename to resources/fixtures/scopes/plaintext/boundedNonWhitespaceSequence3.scope diff --git a/data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.iteration.scope b/resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.iteration.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.iteration.scope rename to resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.iteration.scope diff --git a/data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.scope b/resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.scope rename to resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph.scope diff --git a/data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph2.scope b/resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph2.scope rename to resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph2.scope diff --git a/data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph3.scope b/resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph3.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph3.scope rename to resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph3.scope diff --git a/data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph4.scope b/resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph4.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph4.scope rename to resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph4.scope diff --git a/data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph5.scope b/resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph5.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph5.scope rename to resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph5.scope diff --git a/data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph6.scope b/resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph6.scope similarity index 100% rename from data/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph6.scope rename to resources/fixtures/scopes/plaintext/boundedParagraph/boundedParagraph6.scope diff --git a/data/fixtures/scopes/plaintext/character.scope b/resources/fixtures/scopes/plaintext/character.scope similarity index 100% rename from data/fixtures/scopes/plaintext/character.scope rename to resources/fixtures/scopes/plaintext/character.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration2.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration2.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration2.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration3.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration3.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration3.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration3.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration4.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration4.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration4.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration4.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration5.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration5.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration5.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration5.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration6.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration6.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration6.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration6.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration7.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration7.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration7.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.iteration7.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual10.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual10.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual10.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual10.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual11.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual11.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual11.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual11.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual12.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual12.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual12.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual12.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual13.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual13.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual13.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual13.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual14.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual14.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual14.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual14.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual15.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual15.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual15.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual15.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual2.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual2.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual2.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual3.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual3.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual3.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual3.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual4.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual4.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual4.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual4.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual5.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual5.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual5.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual5.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual6.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual6.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual6.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual6.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual7.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual7.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual7.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual7.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual8.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual8.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual8.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual8.scope diff --git a/data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual9.scope b/resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual9.scope similarity index 100% rename from data/fixtures/scopes/plaintext/collectionItem/collectionItem.textual9.scope rename to resources/fixtures/scopes/plaintext/collectionItem/collectionItem.textual9.scope diff --git a/data/fixtures/scopes/plaintext/document.scope b/resources/fixtures/scopes/plaintext/document.scope similarity index 100% rename from data/fixtures/scopes/plaintext/document.scope rename to resources/fixtures/scopes/plaintext/document.scope diff --git a/data/fixtures/scopes/plaintext/fullLine.scope b/resources/fixtures/scopes/plaintext/fullLine.scope similarity index 100% rename from data/fixtures/scopes/plaintext/fullLine.scope rename to resources/fixtures/scopes/plaintext/fullLine.scope diff --git a/data/fixtures/scopes/plaintext/fullLine2.scope b/resources/fixtures/scopes/plaintext/fullLine2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/fullLine2.scope rename to resources/fixtures/scopes/plaintext/fullLine2.scope diff --git a/data/fixtures/scopes/plaintext/identifier.scope b/resources/fixtures/scopes/plaintext/identifier.scope similarity index 100% rename from data/fixtures/scopes/plaintext/identifier.scope rename to resources/fixtures/scopes/plaintext/identifier.scope diff --git a/data/fixtures/scopes/plaintext/interior.surroundingPair.scope b/resources/fixtures/scopes/plaintext/interior.surroundingPair.scope similarity index 100% rename from data/fixtures/scopes/plaintext/interior.surroundingPair.scope rename to resources/fixtures/scopes/plaintext/interior.surroundingPair.scope diff --git a/data/fixtures/scopes/plaintext/line.scope b/resources/fixtures/scopes/plaintext/line.scope similarity index 100% rename from data/fixtures/scopes/plaintext/line.scope rename to resources/fixtures/scopes/plaintext/line.scope diff --git a/data/fixtures/scopes/plaintext/line2.scope b/resources/fixtures/scopes/plaintext/line2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/line2.scope rename to resources/fixtures/scopes/plaintext/line2.scope diff --git a/data/fixtures/scopes/plaintext/nonWhitespaceSequence.scope b/resources/fixtures/scopes/plaintext/nonWhitespaceSequence.scope similarity index 100% rename from data/fixtures/scopes/plaintext/nonWhitespaceSequence.scope rename to resources/fixtures/scopes/plaintext/nonWhitespaceSequence.scope diff --git a/data/fixtures/scopes/plaintext/paragraph.scope b/resources/fixtures/scopes/plaintext/paragraph.scope similarity index 100% rename from data/fixtures/scopes/plaintext/paragraph.scope rename to resources/fixtures/scopes/plaintext/paragraph.scope diff --git a/data/fixtures/scopes/plaintext/sentence.scope b/resources/fixtures/scopes/plaintext/sentence.scope similarity index 100% rename from data/fixtures/scopes/plaintext/sentence.scope rename to resources/fixtures/scopes/plaintext/sentence.scope diff --git a/data/fixtures/scopes/plaintext/sentence2.scope b/resources/fixtures/scopes/plaintext/sentence2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/sentence2.scope rename to resources/fixtures/scopes/plaintext/sentence2.scope diff --git a/data/fixtures/scopes/plaintext/sentence3.scope b/resources/fixtures/scopes/plaintext/sentence3.scope similarity index 100% rename from data/fixtures/scopes/plaintext/sentence3.scope rename to resources/fixtures/scopes/plaintext/sentence3.scope diff --git a/data/fixtures/scopes/plaintext/sentence4.scope b/resources/fixtures/scopes/plaintext/sentence4.scope similarity index 100% rename from data/fixtures/scopes/plaintext/sentence4.scope rename to resources/fixtures/scopes/plaintext/sentence4.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration2.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration2.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair.iteration2.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair2.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair2.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair2.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair3.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair3.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair3.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair3.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair4.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair4.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair4.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair4.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair5.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair5.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair5.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair5.scope diff --git a/data/fixtures/scopes/plaintext/surroundingPair/surroundingPair6.scope b/resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair6.scope similarity index 100% rename from data/fixtures/scopes/plaintext/surroundingPair/surroundingPair6.scope rename to resources/fixtures/scopes/plaintext/surroundingPair/surroundingPair6.scope diff --git a/data/fixtures/scopes/plaintext/token.scope b/resources/fixtures/scopes/plaintext/token.scope similarity index 100% rename from data/fixtures/scopes/plaintext/token.scope rename to resources/fixtures/scopes/plaintext/token.scope diff --git a/data/fixtures/scopes/plaintext/url.scope b/resources/fixtures/scopes/plaintext/url.scope similarity index 100% rename from data/fixtures/scopes/plaintext/url.scope rename to resources/fixtures/scopes/plaintext/url.scope diff --git a/data/fixtures/scopes/plaintext/url2.scope b/resources/fixtures/scopes/plaintext/url2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/url2.scope rename to resources/fixtures/scopes/plaintext/url2.scope diff --git a/data/fixtures/scopes/plaintext/url3.scope b/resources/fixtures/scopes/plaintext/url3.scope similarity index 100% rename from data/fixtures/scopes/plaintext/url3.scope rename to resources/fixtures/scopes/plaintext/url3.scope diff --git a/data/fixtures/scopes/plaintext/url4.scope b/resources/fixtures/scopes/plaintext/url4.scope similarity index 100% rename from data/fixtures/scopes/plaintext/url4.scope rename to resources/fixtures/scopes/plaintext/url4.scope diff --git a/data/fixtures/scopes/plaintext/word.scope b/resources/fixtures/scopes/plaintext/word.scope similarity index 100% rename from data/fixtures/scopes/plaintext/word.scope rename to resources/fixtures/scopes/plaintext/word.scope diff --git a/data/fixtures/scopes/plaintext/word2.scope b/resources/fixtures/scopes/plaintext/word2.scope similarity index 100% rename from data/fixtures/scopes/plaintext/word2.scope rename to resources/fixtures/scopes/plaintext/word2.scope diff --git a/data/fixtures/scopes/properties/comment.line.scope b/resources/fixtures/scopes/properties/comment.line.scope similarity index 100% rename from data/fixtures/scopes/properties/comment.line.scope rename to resources/fixtures/scopes/properties/comment.line.scope diff --git a/data/fixtures/scopes/properties/key.mapPair.iteration.scope b/resources/fixtures/scopes/properties/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/properties/key.mapPair.iteration.scope rename to resources/fixtures/scopes/properties/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/properties/key.mapPair.scope b/resources/fixtures/scopes/properties/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/properties/key.mapPair.scope rename to resources/fixtures/scopes/properties/key.mapPair.scope diff --git a/data/fixtures/scopes/properties/key.mapPair2.scope b/resources/fixtures/scopes/properties/key.mapPair2.scope similarity index 100% rename from data/fixtures/scopes/properties/key.mapPair2.scope rename to resources/fixtures/scopes/properties/key.mapPair2.scope diff --git a/data/fixtures/scopes/properties/name.iteration.document.scope b/resources/fixtures/scopes/properties/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/properties/name.iteration.document.scope rename to resources/fixtures/scopes/properties/name.iteration.document.scope diff --git a/data/fixtures/scopes/properties/name.variable.initialized.scope b/resources/fixtures/scopes/properties/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/properties/name.variable.initialized.scope rename to resources/fixtures/scopes/properties/name.variable.initialized.scope diff --git a/data/fixtures/scopes/properties/name.variable.initialized2.scope b/resources/fixtures/scopes/properties/name.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/properties/name.variable.initialized2.scope rename to resources/fixtures/scopes/properties/name.variable.initialized2.scope diff --git a/data/fixtures/scopes/properties/statement.iteration.document.scope b/resources/fixtures/scopes/properties/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/properties/statement.iteration.document.scope rename to resources/fixtures/scopes/properties/statement.iteration.document.scope diff --git a/data/fixtures/scopes/properties/statement.variable.initialized.scope b/resources/fixtures/scopes/properties/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/properties/statement.variable.initialized.scope rename to resources/fixtures/scopes/properties/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/properties/textFragment.comment.line.scope b/resources/fixtures/scopes/properties/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/properties/textFragment.comment.line.scope rename to resources/fixtures/scopes/properties/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/properties/value.iteration.document.scope b/resources/fixtures/scopes/properties/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/properties/value.iteration.document.scope rename to resources/fixtures/scopes/properties/value.iteration.document.scope diff --git a/data/fixtures/scopes/properties/value.mapPair.iteration.scope b/resources/fixtures/scopes/properties/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/properties/value.mapPair.iteration.scope rename to resources/fixtures/scopes/properties/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/properties/value.mapPair.scope b/resources/fixtures/scopes/properties/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/properties/value.mapPair.scope rename to resources/fixtures/scopes/properties/value.mapPair.scope diff --git a/data/fixtures/scopes/properties/value.variable.scope b/resources/fixtures/scopes/properties/value.variable.scope similarity index 100% rename from data/fixtures/scopes/properties/value.variable.scope rename to resources/fixtures/scopes/properties/value.variable.scope diff --git a/data/fixtures/scopes/python/anonymousFunction.scope b/resources/fixtures/scopes/python/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/python/anonymousFunction.scope rename to resources/fixtures/scopes/python/anonymousFunction.scope diff --git a/data/fixtures/scopes/python/anonymousFunction2.scope b/resources/fixtures/scopes/python/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/python/anonymousFunction2.scope rename to resources/fixtures/scopes/python/anonymousFunction2.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/python/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/python/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/python/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/python/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/python/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/python/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/python/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/python/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/python/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/python/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/python/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/python/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/python/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/python/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/python/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/python/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/python/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/python/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.actual.singleLine2.scope b/resources/fixtures/scopes/python/argument/argument.actual.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.actual.singleLine2.scope rename to resources/fixtures/scopes/python/argument/argument.actual.singleLine2.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.catch.scope b/resources/fixtures/scopes/python/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/python/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/python/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/python/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/python/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/python/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/python/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/python/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/python/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/python/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/python/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/python/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/python/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/python/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/python/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/python/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/python/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/python/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/python/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/python/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/python/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/python/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/python/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/python/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/python/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.actual.singleLine2.scope b/resources/fixtures/scopes/python/argumentList/argumentList.actual.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.actual.singleLine2.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.actual.singleLine2.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/python/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/python/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/python/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/python/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/python/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/python/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/python/branch/branch.if.else.scope b/resources/fixtures/scopes/python/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.if.else.scope rename to resources/fixtures/scopes/python/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/python/branch/branch.if.iteration.scope b/resources/fixtures/scopes/python/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/python/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/python/branch/branch.if.scope b/resources/fixtures/scopes/python/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.if.scope rename to resources/fixtures/scopes/python/branch/branch.if.scope diff --git a/data/fixtures/scopes/python/branch/branch.loop.iteration.scope b/resources/fixtures/scopes/python/branch/branch.loop.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.loop.iteration.scope rename to resources/fixtures/scopes/python/branch/branch.loop.iteration.scope diff --git a/data/fixtures/scopes/python/branch/branch.loop.iteration2.scope b/resources/fixtures/scopes/python/branch/branch.loop.iteration2.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.loop.iteration2.scope rename to resources/fixtures/scopes/python/branch/branch.loop.iteration2.scope diff --git a/data/fixtures/scopes/python/branch/branch.loop.scope b/resources/fixtures/scopes/python/branch/branch.loop.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.loop.scope rename to resources/fixtures/scopes/python/branch/branch.loop.scope diff --git a/data/fixtures/scopes/python/branch/branch.loop2.scope b/resources/fixtures/scopes/python/branch/branch.loop2.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.loop2.scope rename to resources/fixtures/scopes/python/branch/branch.loop2.scope diff --git a/data/fixtures/scopes/python/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/python/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/python/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/python/branch/branch.switchCase.scope b/resources/fixtures/scopes/python/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.switchCase.scope rename to resources/fixtures/scopes/python/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/python/branch/branch.switchCase2.scope b/resources/fixtures/scopes/python/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/python/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/python/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/python/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/python/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/python/branch/branch.ternary.scope b/resources/fixtures/scopes/python/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.ternary.scope rename to resources/fixtures/scopes/python/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/python/branch/branch.try.iteration.scope b/resources/fixtures/scopes/python/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/python/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/python/branch/branch.try.scope b/resources/fixtures/scopes/python/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.try.scope rename to resources/fixtures/scopes/python/branch/branch.try.scope diff --git a/data/fixtures/scopes/python/branch/branch.try2.scope b/resources/fixtures/scopes/python/branch/branch.try2.scope similarity index 100% rename from data/fixtures/scopes/python/branch/branch.try2.scope rename to resources/fixtures/scopes/python/branch/branch.try2.scope diff --git a/data/fixtures/scopes/python/class.iteration.class.scope b/resources/fixtures/scopes/python/class.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/python/class.iteration.class.scope rename to resources/fixtures/scopes/python/class.iteration.class.scope diff --git a/data/fixtures/scopes/python/class.iteration.document.scope b/resources/fixtures/scopes/python/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/python/class.iteration.document.scope rename to resources/fixtures/scopes/python/class.iteration.document.scope diff --git a/data/fixtures/scopes/python/class.scope b/resources/fixtures/scopes/python/class.scope similarity index 100% rename from data/fixtures/scopes/python/class.scope rename to resources/fixtures/scopes/python/class.scope diff --git a/data/fixtures/scopes/python/class2.scope b/resources/fixtures/scopes/python/class2.scope similarity index 100% rename from data/fixtures/scopes/python/class2.scope rename to resources/fixtures/scopes/python/class2.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration2.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration2.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration2.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration2.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration3.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration3.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration3.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration3.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration4.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration4.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration4.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.iteration4.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine2.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine2.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine2.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine3.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine3.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine3.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine3.scope diff --git a/data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine4.scope b/resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine4.scope similarity index 100% rename from data/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine4.scope rename to resources/fixtures/scopes/python/collectionItem/collectionItem.unenclosed.singleLine4.scope diff --git a/data/fixtures/scopes/python/comment.line.scope b/resources/fixtures/scopes/python/comment.line.scope similarity index 100% rename from data/fixtures/scopes/python/comment.line.scope rename to resources/fixtures/scopes/python/comment.line.scope diff --git a/data/fixtures/scopes/python/condition/condition.if.scope b/resources/fixtures/scopes/python/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/python/condition/condition.if.scope rename to resources/fixtures/scopes/python/condition/condition.if.scope diff --git a/data/fixtures/scopes/python/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/python/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/python/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/python/condition/condition.switchCase.scope b/resources/fixtures/scopes/python/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/python/condition/condition.switchCase.scope rename to resources/fixtures/scopes/python/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/python/condition/condition.ternary.scope b/resources/fixtures/scopes/python/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/python/condition/condition.ternary.scope rename to resources/fixtures/scopes/python/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/python/condition/condition.while.scope b/resources/fixtures/scopes/python/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/python/condition/condition.while.scope rename to resources/fixtures/scopes/python/condition/condition.while.scope diff --git a/data/fixtures/scopes/python/disqualifyDelimiter.scope b/resources/fixtures/scopes/python/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/python/disqualifyDelimiter.scope rename to resources/fixtures/scopes/python/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/python/fieldAccess.scope b/resources/fixtures/scopes/python/fieldAccess.scope similarity index 100% rename from data/fixtures/scopes/python/fieldAccess.scope rename to resources/fixtures/scopes/python/fieldAccess.scope diff --git a/data/fixtures/scopes/python/functionCall.chain.scope b/resources/fixtures/scopes/python/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/python/functionCall.chain.scope rename to resources/fixtures/scopes/python/functionCall.chain.scope diff --git a/data/fixtures/scopes/python/functionCall.constructor.scope b/resources/fixtures/scopes/python/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/functionCall.constructor.scope rename to resources/fixtures/scopes/python/functionCall.constructor.scope diff --git a/data/fixtures/scopes/python/functionCall.method.scope b/resources/fixtures/scopes/python/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/python/functionCall.method.scope rename to resources/fixtures/scopes/python/functionCall.method.scope diff --git a/data/fixtures/scopes/python/functionCall.scope b/resources/fixtures/scopes/python/functionCall.scope similarity index 100% rename from data/fixtures/scopes/python/functionCall.scope rename to resources/fixtures/scopes/python/functionCall.scope diff --git a/data/fixtures/scopes/python/functionCallee.chain.scope b/resources/fixtures/scopes/python/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/python/functionCallee.chain.scope rename to resources/fixtures/scopes/python/functionCallee.chain.scope diff --git a/data/fixtures/scopes/python/functionCallee.constructor.scope b/resources/fixtures/scopes/python/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/functionCallee.constructor.scope rename to resources/fixtures/scopes/python/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/python/functionCallee.method.scope b/resources/fixtures/scopes/python/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/python/functionCallee.method.scope rename to resources/fixtures/scopes/python/functionCallee.method.scope diff --git a/data/fixtures/scopes/python/functionCallee.scope b/resources/fixtures/scopes/python/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/python/functionCallee.scope rename to resources/fixtures/scopes/python/functionCallee.scope diff --git a/data/fixtures/scopes/python/ifStatement.scope b/resources/fixtures/scopes/python/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/python/ifStatement.scope rename to resources/fixtures/scopes/python/ifStatement.scope diff --git a/data/fixtures/scopes/python/interior/interior.class.scope b/resources/fixtures/scopes/python/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.class.scope rename to resources/fixtures/scopes/python/interior/interior.class.scope diff --git a/data/fixtures/scopes/python/interior/interior.constructor.scope b/resources/fixtures/scopes/python/interior/interior.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.constructor.scope rename to resources/fixtures/scopes/python/interior/interior.constructor.scope diff --git a/data/fixtures/scopes/python/interior/interior.foreach.scope b/resources/fixtures/scopes/python/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.foreach.scope rename to resources/fixtures/scopes/python/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/python/interior/interior.function.scope b/resources/fixtures/scopes/python/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.function.scope rename to resources/fixtures/scopes/python/interior/interior.function.scope diff --git a/data/fixtures/scopes/python/interior/interior.if.scope b/resources/fixtures/scopes/python/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.if.scope rename to resources/fixtures/scopes/python/interior/interior.if.scope diff --git a/data/fixtures/scopes/python/interior/interior.method.scope b/resources/fixtures/scopes/python/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.method.scope rename to resources/fixtures/scopes/python/interior/interior.method.scope diff --git a/data/fixtures/scopes/python/interior/interior.resource.scope b/resources/fixtures/scopes/python/interior/interior.resource.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.resource.scope rename to resources/fixtures/scopes/python/interior/interior.resource.scope diff --git a/data/fixtures/scopes/python/interior/interior.switch.scope b/resources/fixtures/scopes/python/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.switch.scope rename to resources/fixtures/scopes/python/interior/interior.switch.scope diff --git a/data/fixtures/scopes/python/interior/interior.switchCase.scope b/resources/fixtures/scopes/python/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.switchCase.scope rename to resources/fixtures/scopes/python/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/python/interior/interior.try.scope b/resources/fixtures/scopes/python/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.try.scope rename to resources/fixtures/scopes/python/interior/interior.try.scope diff --git a/data/fixtures/scopes/python/interior/interior.try2.scope b/resources/fixtures/scopes/python/interior/interior.try2.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.try2.scope rename to resources/fixtures/scopes/python/interior/interior.try2.scope diff --git a/data/fixtures/scopes/python/interior/interior.while.scope b/resources/fixtures/scopes/python/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/python/interior/interior.while.scope rename to resources/fixtures/scopes/python/interior/interior.while.scope diff --git a/data/fixtures/scopes/python/key.mapPair.iteration.scope b/resources/fixtures/scopes/python/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/key.mapPair.iteration.scope rename to resources/fixtures/scopes/python/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/python/key.mapPair.scope b/resources/fixtures/scopes/python/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/python/key.mapPair.scope rename to resources/fixtures/scopes/python/key.mapPair.scope diff --git a/data/fixtures/scopes/python/list.scope b/resources/fixtures/scopes/python/list.scope similarity index 100% rename from data/fixtures/scopes/python/list.scope rename to resources/fixtures/scopes/python/list.scope diff --git a/data/fixtures/scopes/python/list2.scope b/resources/fixtures/scopes/python/list2.scope similarity index 100% rename from data/fixtures/scopes/python/list2.scope rename to resources/fixtures/scopes/python/list2.scope diff --git a/data/fixtures/scopes/python/list3.scope b/resources/fixtures/scopes/python/list3.scope similarity index 100% rename from data/fixtures/scopes/python/list3.scope rename to resources/fixtures/scopes/python/list3.scope diff --git a/data/fixtures/scopes/python/list4.scope b/resources/fixtures/scopes/python/list4.scope similarity index 100% rename from data/fixtures/scopes/python/list4.scope rename to resources/fixtures/scopes/python/list4.scope diff --git a/data/fixtures/scopes/python/list5.scope b/resources/fixtures/scopes/python/list5.scope similarity index 100% rename from data/fixtures/scopes/python/list5.scope rename to resources/fixtures/scopes/python/list5.scope diff --git a/data/fixtures/scopes/python/map.scope b/resources/fixtures/scopes/python/map.scope similarity index 100% rename from data/fixtures/scopes/python/map.scope rename to resources/fixtures/scopes/python/map.scope diff --git a/data/fixtures/scopes/python/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/python/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/python/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/python/name/name.argument.actual.scope b/resources/fixtures/scopes/python/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.actual.scope rename to resources/fixtures/scopes/python/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/python/name/name.argument.catch.scope b/resources/fixtures/scopes/python/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.catch.scope rename to resources/fixtures/scopes/python/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/python/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/python/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/python/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/python/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/python/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/python/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.method.scope b/resources/fixtures/scopes/python/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/python/name/name.argument.formal.scope b/resources/fixtures/scopes/python/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.argument.formal.scope rename to resources/fixtures/scopes/python/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/python/name/name.assignment.compound.scope b/resources/fixtures/scopes/python/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.assignment.compound.scope rename to resources/fixtures/scopes/python/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/python/name/name.assignment.destructuring.scope b/resources/fixtures/scopes/python/name/name.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.assignment.destructuring.scope rename to resources/fixtures/scopes/python/name/name.assignment.destructuring.scope diff --git a/data/fixtures/scopes/python/name/name.assignment.scope b/resources/fixtures/scopes/python/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.assignment.scope rename to resources/fixtures/scopes/python/name/name.assignment.scope diff --git a/data/fixtures/scopes/python/name/name.class.scope b/resources/fixtures/scopes/python/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.class.scope rename to resources/fixtures/scopes/python/name/name.class.scope diff --git a/data/fixtures/scopes/python/name/name.class2.scope b/resources/fixtures/scopes/python/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.class2.scope rename to resources/fixtures/scopes/python/name/name.class2.scope diff --git a/data/fixtures/scopes/python/name/name.constructor.scope b/resources/fixtures/scopes/python/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.constructor.scope rename to resources/fixtures/scopes/python/name/name.constructor.scope diff --git a/data/fixtures/scopes/python/name/name.field.class.scope b/resources/fixtures/scopes/python/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.field.class.scope rename to resources/fixtures/scopes/python/name/name.field.class.scope diff --git a/data/fixtures/scopes/python/name/name.foreach.scope b/resources/fixtures/scopes/python/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.foreach.scope rename to resources/fixtures/scopes/python/name/name.foreach.scope diff --git a/data/fixtures/scopes/python/name/name.function.scope b/resources/fixtures/scopes/python/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.function.scope rename to resources/fixtures/scopes/python/name/name.function.scope diff --git a/data/fixtures/scopes/python/name/name.function2.scope b/resources/fixtures/scopes/python/name/name.function2.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.function2.scope rename to resources/fixtures/scopes/python/name/name.function2.scope diff --git a/data/fixtures/scopes/python/name/name.iteration.block.scope b/resources/fixtures/scopes/python/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.iteration.block.scope rename to resources/fixtures/scopes/python/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/python/name/name.iteration.block2.scope b/resources/fixtures/scopes/python/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.iteration.block2.scope rename to resources/fixtures/scopes/python/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/python/name/name.iteration.block3.scope b/resources/fixtures/scopes/python/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.iteration.block3.scope rename to resources/fixtures/scopes/python/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/python/name/name.iteration.block4.scope b/resources/fixtures/scopes/python/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.iteration.block4.scope rename to resources/fixtures/scopes/python/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/python/name/name.iteration.class.scope b/resources/fixtures/scopes/python/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.iteration.class.scope rename to resources/fixtures/scopes/python/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/python/name/name.iteration.document.scope b/resources/fixtures/scopes/python/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.iteration.document.scope rename to resources/fixtures/scopes/python/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/python/name/name.method.scope b/resources/fixtures/scopes/python/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.method.scope rename to resources/fixtures/scopes/python/name/name.method.scope diff --git a/data/fixtures/scopes/python/name/name.resource.scope b/resources/fixtures/scopes/python/name/name.resource.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.resource.scope rename to resources/fixtures/scopes/python/name/name.resource.scope diff --git a/data/fixtures/scopes/python/name/name.variable.destructuring.scope b/resources/fixtures/scopes/python/name/name.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.variable.destructuring.scope rename to resources/fixtures/scopes/python/name/name.variable.destructuring.scope diff --git a/data/fixtures/scopes/python/name/name.variable.initialized.scope b/resources/fixtures/scopes/python/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.variable.initialized.scope rename to resources/fixtures/scopes/python/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/python/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/python/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/python/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/python/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/python/namedFunction/namedFunction.constructor.scope b/resources/fixtures/scopes/python/namedFunction/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/namedFunction/namedFunction.constructor.scope rename to resources/fixtures/scopes/python/namedFunction/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/python/namedFunction/namedFunction.iteration.class.scope b/resources/fixtures/scopes/python/namedFunction/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/python/namedFunction/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/python/namedFunction/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/python/namedFunction/namedFunction.iteration.document.scope b/resources/fixtures/scopes/python/namedFunction/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/python/namedFunction/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/python/namedFunction/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/python/namedFunction/namedFunction.method.scope b/resources/fixtures/scopes/python/namedFunction/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/python/namedFunction/namedFunction.method.scope rename to resources/fixtures/scopes/python/namedFunction/namedFunction.method.scope diff --git a/data/fixtures/scopes/python/namedFunction/namedFunction.scope b/resources/fixtures/scopes/python/namedFunction/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/python/namedFunction/namedFunction.scope rename to resources/fixtures/scopes/python/namedFunction/namedFunction.scope diff --git a/data/fixtures/scopes/python/namedFunction/namedFunction2.scope b/resources/fixtures/scopes/python/namedFunction/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/python/namedFunction/namedFunction2.scope rename to resources/fixtures/scopes/python/namedFunction/namedFunction2.scope diff --git a/data/fixtures/scopes/python/pairDelimiter.scope b/resources/fixtures/scopes/python/pairDelimiter.scope similarity index 100% rename from data/fixtures/scopes/python/pairDelimiter.scope rename to resources/fixtures/scopes/python/pairDelimiter.scope diff --git a/data/fixtures/scopes/python/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/python/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/python/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/python/statement/statement.assignment.destructuring.scope b/resources/fixtures/scopes/python/statement/statement.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.assignment.destructuring.scope rename to resources/fixtures/scopes/python/statement/statement.assignment.destructuring.scope diff --git a/data/fixtures/scopes/python/statement/statement.assignment.scope b/resources/fixtures/scopes/python/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.assignment.scope rename to resources/fixtures/scopes/python/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/python/statement/statement.break.scope b/resources/fixtures/scopes/python/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.break.scope rename to resources/fixtures/scopes/python/statement/statement.break.scope diff --git a/data/fixtures/scopes/python/statement/statement.class.scope b/resources/fixtures/scopes/python/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.class.scope rename to resources/fixtures/scopes/python/statement/statement.class.scope diff --git a/data/fixtures/scopes/python/statement/statement.class2.scope b/resources/fixtures/scopes/python/statement/statement.class2.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.class2.scope rename to resources/fixtures/scopes/python/statement/statement.class2.scope diff --git a/data/fixtures/scopes/python/statement/statement.constructor.scope b/resources/fixtures/scopes/python/statement/statement.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.constructor.scope rename to resources/fixtures/scopes/python/statement/statement.constructor.scope diff --git a/data/fixtures/scopes/python/statement/statement.continue.scope b/resources/fixtures/scopes/python/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.continue.scope rename to resources/fixtures/scopes/python/statement/statement.continue.scope diff --git a/data/fixtures/scopes/python/statement/statement.field.class.scope b/resources/fixtures/scopes/python/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.field.class.scope rename to resources/fixtures/scopes/python/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/python/statement/statement.foreach.scope b/resources/fixtures/scopes/python/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.foreach.scope rename to resources/fixtures/scopes/python/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/python/statement/statement.function.scope b/resources/fixtures/scopes/python/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.function.scope rename to resources/fixtures/scopes/python/statement/statement.function.scope diff --git a/data/fixtures/scopes/python/statement/statement.function2.scope b/resources/fixtures/scopes/python/statement/statement.function2.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.function2.scope rename to resources/fixtures/scopes/python/statement/statement.function2.scope diff --git a/data/fixtures/scopes/python/statement/statement.functionCall.scope b/resources/fixtures/scopes/python/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.functionCall.scope rename to resources/fixtures/scopes/python/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/python/statement/statement.if.scope b/resources/fixtures/scopes/python/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.if.scope rename to resources/fixtures/scopes/python/statement/statement.if.scope diff --git a/data/fixtures/scopes/python/statement/statement.import.scope b/resources/fixtures/scopes/python/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.import.scope rename to resources/fixtures/scopes/python/statement/statement.import.scope diff --git a/data/fixtures/scopes/python/statement/statement.iteration.block.scope b/resources/fixtures/scopes/python/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/python/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/python/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/python/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/python/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/python/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/python/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/python/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/python/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/python/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/python/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/python/statement/statement.iteration.class.scope b/resources/fixtures/scopes/python/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/python/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/python/statement/statement.iteration.document.scope b/resources/fixtures/scopes/python/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/python/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/python/statement/statement.method.scope b/resources/fixtures/scopes/python/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.method.scope rename to resources/fixtures/scopes/python/statement/statement.method.scope diff --git a/data/fixtures/scopes/python/statement/statement.resource.scope b/resources/fixtures/scopes/python/statement/statement.resource.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.resource.scope rename to resources/fixtures/scopes/python/statement/statement.resource.scope diff --git a/data/fixtures/scopes/python/statement/statement.return.scope b/resources/fixtures/scopes/python/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.return.scope rename to resources/fixtures/scopes/python/statement/statement.return.scope diff --git a/data/fixtures/scopes/python/statement/statement.switch.scope b/resources/fixtures/scopes/python/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.switch.scope rename to resources/fixtures/scopes/python/statement/statement.switch.scope diff --git a/data/fixtures/scopes/python/statement/statement.throw.scope b/resources/fixtures/scopes/python/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.throw.scope rename to resources/fixtures/scopes/python/statement/statement.throw.scope diff --git a/data/fixtures/scopes/python/statement/statement.try.scope b/resources/fixtures/scopes/python/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.try.scope rename to resources/fixtures/scopes/python/statement/statement.try.scope diff --git a/data/fixtures/scopes/python/statement/statement.variable.destructuring.scope b/resources/fixtures/scopes/python/statement/statement.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.variable.destructuring.scope rename to resources/fixtures/scopes/python/statement/statement.variable.destructuring.scope diff --git a/data/fixtures/scopes/python/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/python/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/python/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/python/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/python/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/python/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/python/statement/statement.while.scope b/resources/fixtures/scopes/python/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.while.scope rename to resources/fixtures/scopes/python/statement/statement.while.scope diff --git a/data/fixtures/scopes/python/statement/statement.yield.scope b/resources/fixtures/scopes/python/statement/statement.yield.scope similarity index 100% rename from data/fixtures/scopes/python/statement/statement.yield.scope rename to resources/fixtures/scopes/python/statement/statement.yield.scope diff --git a/data/fixtures/scopes/python/string.multiLine.scope b/resources/fixtures/scopes/python/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/string.multiLine.scope rename to resources/fixtures/scopes/python/string.multiLine.scope diff --git a/data/fixtures/scopes/python/string.singleLine.scope b/resources/fixtures/scopes/python/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/string.singleLine.scope rename to resources/fixtures/scopes/python/string.singleLine.scope diff --git a/data/fixtures/scopes/python/textFragment.comment.line.scope b/resources/fixtures/scopes/python/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/python/textFragment.comment.line.scope rename to resources/fixtures/scopes/python/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/python/textFragment.string.multiLine.scope b/resources/fixtures/scopes/python/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/python/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/python/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/python/textFragment.string.singleLine.scope b/resources/fixtures/scopes/python/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/python/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/python/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/python/type/type.argument.catch.scope b/resources/fixtures/scopes/python/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.argument.catch.scope rename to resources/fixtures/scopes/python/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/python/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/python/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/python/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/python/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/python/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/python/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/python/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/python/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/python/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/python/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/python/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/python/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/python/type/type.argument.formal.method.scope b/resources/fixtures/scopes/python/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/python/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/python/type/type.argument.formal.scope b/resources/fixtures/scopes/python/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.argument.formal.scope rename to resources/fixtures/scopes/python/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/python/type/type.class.scope b/resources/fixtures/scopes/python/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.class.scope rename to resources/fixtures/scopes/python/type/type.class.scope diff --git a/data/fixtures/scopes/python/type/type.class2.scope b/resources/fixtures/scopes/python/type/type.class2.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.class2.scope rename to resources/fixtures/scopes/python/type/type.class2.scope diff --git a/data/fixtures/scopes/python/type/type.field.class.scope b/resources/fixtures/scopes/python/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.field.class.scope rename to resources/fixtures/scopes/python/type/type.field.class.scope diff --git a/data/fixtures/scopes/python/type/type.iteration.block.scope b/resources/fixtures/scopes/python/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.iteration.block.scope rename to resources/fixtures/scopes/python/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/python/type/type.iteration.block2.scope b/resources/fixtures/scopes/python/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.iteration.block2.scope rename to resources/fixtures/scopes/python/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/python/type/type.iteration.block3.scope b/resources/fixtures/scopes/python/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.iteration.block3.scope rename to resources/fixtures/scopes/python/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/python/type/type.iteration.block4.scope b/resources/fixtures/scopes/python/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.iteration.block4.scope rename to resources/fixtures/scopes/python/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/python/type/type.iteration.class.scope b/resources/fixtures/scopes/python/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.iteration.class.scope rename to resources/fixtures/scopes/python/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/python/type/type.iteration.document.scope b/resources/fixtures/scopes/python/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.iteration.document.scope rename to resources/fixtures/scopes/python/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/python/type/type.return.method.scope b/resources/fixtures/scopes/python/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.return.method.scope rename to resources/fixtures/scopes/python/type/type.return.method.scope diff --git a/data/fixtures/scopes/python/type/type.return.scope b/resources/fixtures/scopes/python/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.return.scope rename to resources/fixtures/scopes/python/type/type.return.scope diff --git a/data/fixtures/scopes/python/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/python/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/python/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/python/type/type.typeArgument.scope b/resources/fixtures/scopes/python/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.typeArgument.scope rename to resources/fixtures/scopes/python/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/python/type/type.typeArgument2.scope b/resources/fixtures/scopes/python/type/type.typeArgument2.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.typeArgument2.scope rename to resources/fixtures/scopes/python/type/type.typeArgument2.scope diff --git a/data/fixtures/scopes/python/type/type.variable.initialized.scope b/resources/fixtures/scopes/python/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.variable.initialized.scope rename to resources/fixtures/scopes/python/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/python/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/python/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/python/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/python/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/python/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/python/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/python/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/python/value/value.argument.actual.scope b/resources/fixtures/scopes/python/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.actual.scope rename to resources/fixtures/scopes/python/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/python/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/python/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/python/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/python/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/python/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/python/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.method.scope b/resources/fixtures/scopes/python/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/python/value/value.argument.formal.scope b/resources/fixtures/scopes/python/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.argument.formal.scope rename to resources/fixtures/scopes/python/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/python/value/value.assignment.compound.scope b/resources/fixtures/scopes/python/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.assignment.compound.scope rename to resources/fixtures/scopes/python/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/python/value/value.assignment.destructuring.scope b/resources/fixtures/scopes/python/value/value.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.assignment.destructuring.scope rename to resources/fixtures/scopes/python/value/value.assignment.destructuring.scope diff --git a/data/fixtures/scopes/python/value/value.assignment.scope b/resources/fixtures/scopes/python/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.assignment.scope rename to resources/fixtures/scopes/python/value/value.assignment.scope diff --git a/data/fixtures/scopes/python/value/value.assignment2.scope b/resources/fixtures/scopes/python/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.assignment2.scope rename to resources/fixtures/scopes/python/value/value.assignment2.scope diff --git a/data/fixtures/scopes/python/value/value.field.class.scope b/resources/fixtures/scopes/python/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.field.class.scope rename to resources/fixtures/scopes/python/value/value.field.class.scope diff --git a/data/fixtures/scopes/python/value/value.foreach.scope b/resources/fixtures/scopes/python/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.foreach.scope rename to resources/fixtures/scopes/python/value/value.foreach.scope diff --git a/data/fixtures/scopes/python/value/value.iteration.block.scope b/resources/fixtures/scopes/python/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.iteration.block.scope rename to resources/fixtures/scopes/python/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/python/value/value.iteration.block2.scope b/resources/fixtures/scopes/python/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.iteration.block2.scope rename to resources/fixtures/scopes/python/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/python/value/value.iteration.block3.scope b/resources/fixtures/scopes/python/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.iteration.block3.scope rename to resources/fixtures/scopes/python/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/python/value/value.iteration.block4.scope b/resources/fixtures/scopes/python/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.iteration.block4.scope rename to resources/fixtures/scopes/python/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/python/value/value.iteration.class.scope b/resources/fixtures/scopes/python/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.iteration.class.scope rename to resources/fixtures/scopes/python/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/python/value/value.iteration.document.scope b/resources/fixtures/scopes/python/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.iteration.document.scope rename to resources/fixtures/scopes/python/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/python/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/python/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/python/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/python/value/value.mapPair.scope b/resources/fixtures/scopes/python/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.mapPair.scope rename to resources/fixtures/scopes/python/value/value.mapPair.scope diff --git a/data/fixtures/scopes/python/value/value.return.lambda.scope b/resources/fixtures/scopes/python/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.return.lambda.scope rename to resources/fixtures/scopes/python/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/python/value/value.return.scope b/resources/fixtures/scopes/python/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.return.scope rename to resources/fixtures/scopes/python/value/value.return.scope diff --git a/data/fixtures/scopes/python/value/value.switch.scope b/resources/fixtures/scopes/python/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.switch.scope rename to resources/fixtures/scopes/python/value/value.switch.scope diff --git a/data/fixtures/scopes/python/value/value.throw.scope b/resources/fixtures/scopes/python/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.throw.scope rename to resources/fixtures/scopes/python/value/value.throw.scope diff --git a/data/fixtures/scopes/python/value/value.variable.destructuring.scope b/resources/fixtures/scopes/python/value/value.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.variable.destructuring.scope rename to resources/fixtures/scopes/python/value/value.variable.destructuring.scope diff --git a/data/fixtures/scopes/python/value/value.variable.scope b/resources/fixtures/scopes/python/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.variable.scope rename to resources/fixtures/scopes/python/value/value.variable.scope diff --git a/data/fixtures/scopes/python/value/value.variable2.scope b/resources/fixtures/scopes/python/value/value.variable2.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.variable2.scope rename to resources/fixtures/scopes/python/value/value.variable2.scope diff --git a/data/fixtures/scopes/python/value/value.yield.scope b/resources/fixtures/scopes/python/value/value.yield.scope similarity index 100% rename from data/fixtures/scopes/python/value/value.yield.scope rename to resources/fixtures/scopes/python/value/value.yield.scope diff --git a/data/fixtures/scopes/r/anonymousFunction.scope b/resources/fixtures/scopes/r/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/r/anonymousFunction.scope rename to resources/fixtures/scopes/r/anonymousFunction.scope diff --git a/data/fixtures/scopes/r/anonymousFunction2.scope b/resources/fixtures/scopes/r/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/r/anonymousFunction2.scope rename to resources/fixtures/scopes/r/anonymousFunction2.scope diff --git a/data/fixtures/scopes/r/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/r/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/r/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/r/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/r/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/r/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/r/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/r/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/r/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/r/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/r/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/r/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/r/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/r/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/r/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/r/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/r/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/r/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/r/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/r/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/r/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/r/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/r/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/r/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/r/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/r/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/r/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/r/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/r/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/r/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/r/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/r/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/r/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/r/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/r/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/r/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/r/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/r/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/r/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/r/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/r/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/r/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/r/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/r/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/r/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/r/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/r/branch/branch.if.else.scope b/resources/fixtures/scopes/r/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.if.else.scope rename to resources/fixtures/scopes/r/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/r/branch/branch.if.iteration.scope b/resources/fixtures/scopes/r/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/r/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/r/branch/branch.if.scope b/resources/fixtures/scopes/r/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.if.scope rename to resources/fixtures/scopes/r/branch/branch.if.scope diff --git a/data/fixtures/scopes/r/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/r/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/r/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/r/branch/branch.switchCase.scope b/resources/fixtures/scopes/r/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.switchCase.scope rename to resources/fixtures/scopes/r/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/r/branch/branch.switchCase2.scope b/resources/fixtures/scopes/r/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/r/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/r/branch/branch.switchCase3.scope b/resources/fixtures/scopes/r/branch/branch.switchCase3.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.switchCase3.scope rename to resources/fixtures/scopes/r/branch/branch.switchCase3.scope diff --git a/data/fixtures/scopes/r/branch/branch.try.iteration.scope b/resources/fixtures/scopes/r/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/r/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/r/branch/branch.try.scope b/resources/fixtures/scopes/r/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/r/branch/branch.try.scope rename to resources/fixtures/scopes/r/branch/branch.try.scope diff --git a/data/fixtures/scopes/r/comment.line.scope b/resources/fixtures/scopes/r/comment.line.scope similarity index 100% rename from data/fixtures/scopes/r/comment.line.scope rename to resources/fixtures/scopes/r/comment.line.scope diff --git a/data/fixtures/scopes/r/condition.if.scope b/resources/fixtures/scopes/r/condition.if.scope similarity index 100% rename from data/fixtures/scopes/r/condition.if.scope rename to resources/fixtures/scopes/r/condition.if.scope diff --git a/data/fixtures/scopes/r/condition.switchCase.iteration.scope b/resources/fixtures/scopes/r/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/r/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/r/condition.switchCase.scope b/resources/fixtures/scopes/r/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/r/condition.switchCase.scope rename to resources/fixtures/scopes/r/condition.switchCase.scope diff --git a/data/fixtures/scopes/r/condition.switchCase2.scope b/resources/fixtures/scopes/r/condition.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/r/condition.switchCase2.scope rename to resources/fixtures/scopes/r/condition.switchCase2.scope diff --git a/data/fixtures/scopes/r/condition.while.scope b/resources/fixtures/scopes/r/condition.while.scope similarity index 100% rename from data/fixtures/scopes/r/condition.while.scope rename to resources/fixtures/scopes/r/condition.while.scope diff --git a/data/fixtures/scopes/r/disqualifyDelimiter.scope b/resources/fixtures/scopes/r/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/r/disqualifyDelimiter.scope rename to resources/fixtures/scopes/r/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/r/functionCall.method.scope b/resources/fixtures/scopes/r/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/r/functionCall.method.scope rename to resources/fixtures/scopes/r/functionCall.method.scope diff --git a/data/fixtures/scopes/r/functionCall.scope b/resources/fixtures/scopes/r/functionCall.scope similarity index 100% rename from data/fixtures/scopes/r/functionCall.scope rename to resources/fixtures/scopes/r/functionCall.scope diff --git a/data/fixtures/scopes/r/functionCallee.method.scope b/resources/fixtures/scopes/r/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/r/functionCallee.method.scope rename to resources/fixtures/scopes/r/functionCallee.method.scope diff --git a/data/fixtures/scopes/r/functionCallee.scope b/resources/fixtures/scopes/r/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/r/functionCallee.scope rename to resources/fixtures/scopes/r/functionCallee.scope diff --git a/data/fixtures/scopes/r/ifStatement.scope b/resources/fixtures/scopes/r/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/r/ifStatement.scope rename to resources/fixtures/scopes/r/ifStatement.scope diff --git a/data/fixtures/scopes/r/interior/interior.foreach.scope b/resources/fixtures/scopes/r/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.foreach.scope rename to resources/fixtures/scopes/r/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/r/interior/interior.function.scope b/resources/fixtures/scopes/r/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.function.scope rename to resources/fixtures/scopes/r/interior/interior.function.scope diff --git a/data/fixtures/scopes/r/interior/interior.if.scope b/resources/fixtures/scopes/r/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.if.scope rename to resources/fixtures/scopes/r/interior/interior.if.scope diff --git a/data/fixtures/scopes/r/interior/interior.lambda.scope b/resources/fixtures/scopes/r/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.lambda.scope rename to resources/fixtures/scopes/r/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/r/interior/interior.switchCase.scope b/resources/fixtures/scopes/r/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.switchCase.scope rename to resources/fixtures/scopes/r/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/r/interior/interior.switchCase2.scope b/resources/fixtures/scopes/r/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/r/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/r/interior/interior.try.scope b/resources/fixtures/scopes/r/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.try.scope rename to resources/fixtures/scopes/r/interior/interior.try.scope diff --git a/data/fixtures/scopes/r/interior/interior.while.scope b/resources/fixtures/scopes/r/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/r/interior/interior.while.scope rename to resources/fixtures/scopes/r/interior/interior.while.scope diff --git a/data/fixtures/scopes/r/list.scope b/resources/fixtures/scopes/r/list.scope similarity index 100% rename from data/fixtures/scopes/r/list.scope rename to resources/fixtures/scopes/r/list.scope diff --git a/data/fixtures/scopes/r/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/r/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/r/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/r/name/name.argument.actual.scope b/resources/fixtures/scopes/r/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.argument.actual.scope rename to resources/fixtures/scopes/r/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/r/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/r/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/r/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/r/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/r/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/r/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/r/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/r/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/r/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/r/name/name.argument.formal.scope b/resources/fixtures/scopes/r/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.argument.formal.scope rename to resources/fixtures/scopes/r/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/r/name/name.assignment.scope b/resources/fixtures/scopes/r/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.assignment.scope rename to resources/fixtures/scopes/r/name/name.assignment.scope diff --git a/data/fixtures/scopes/r/name/name.assignment2.scope b/resources/fixtures/scopes/r/name/name.assignment2.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.assignment2.scope rename to resources/fixtures/scopes/r/name/name.assignment2.scope diff --git a/data/fixtures/scopes/r/name/name.foreach.scope b/resources/fixtures/scopes/r/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.foreach.scope rename to resources/fixtures/scopes/r/name/name.foreach.scope diff --git a/data/fixtures/scopes/r/name/name.function.scope b/resources/fixtures/scopes/r/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.function.scope rename to resources/fixtures/scopes/r/name/name.function.scope diff --git a/data/fixtures/scopes/r/name/name.iteration.block.scope b/resources/fixtures/scopes/r/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.iteration.block.scope rename to resources/fixtures/scopes/r/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/r/name/name.iteration.block2.scope b/resources/fixtures/scopes/r/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.iteration.block2.scope rename to resources/fixtures/scopes/r/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/r/name/name.iteration.block3.scope b/resources/fixtures/scopes/r/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.iteration.block3.scope rename to resources/fixtures/scopes/r/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/r/name/name.iteration.document.scope b/resources/fixtures/scopes/r/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.iteration.document.scope rename to resources/fixtures/scopes/r/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/r/name/name.variable.initialized.scope b/resources/fixtures/scopes/r/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/r/name/name.variable.initialized.scope rename to resources/fixtures/scopes/r/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/r/namedFunction.iteration.document.scope b/resources/fixtures/scopes/r/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/r/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/r/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/r/namedFunction.scope b/resources/fixtures/scopes/r/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/r/namedFunction.scope rename to resources/fixtures/scopes/r/namedFunction.scope diff --git a/data/fixtures/scopes/r/statement/statement.assignment.scope b/resources/fixtures/scopes/r/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.assignment.scope rename to resources/fixtures/scopes/r/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/r/statement/statement.assignment2.scope b/resources/fixtures/scopes/r/statement/statement.assignment2.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.assignment2.scope rename to resources/fixtures/scopes/r/statement/statement.assignment2.scope diff --git a/data/fixtures/scopes/r/statement/statement.break.scope b/resources/fixtures/scopes/r/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.break.scope rename to resources/fixtures/scopes/r/statement/statement.break.scope diff --git a/data/fixtures/scopes/r/statement/statement.continue.scope b/resources/fixtures/scopes/r/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.continue.scope rename to resources/fixtures/scopes/r/statement/statement.continue.scope diff --git a/data/fixtures/scopes/r/statement/statement.foreach.scope b/resources/fixtures/scopes/r/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.foreach.scope rename to resources/fixtures/scopes/r/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/r/statement/statement.function.scope b/resources/fixtures/scopes/r/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.function.scope rename to resources/fixtures/scopes/r/statement/statement.function.scope diff --git a/data/fixtures/scopes/r/statement/statement.functionCall.scope b/resources/fixtures/scopes/r/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.functionCall.scope rename to resources/fixtures/scopes/r/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/r/statement/statement.if.scope b/resources/fixtures/scopes/r/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.if.scope rename to resources/fixtures/scopes/r/statement/statement.if.scope diff --git a/data/fixtures/scopes/r/statement/statement.iteration.block.scope b/resources/fixtures/scopes/r/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/r/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/r/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/r/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/r/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/r/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/r/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/r/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/r/statement/statement.iteration.document.scope b/resources/fixtures/scopes/r/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/r/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/r/statement/statement.return.scope b/resources/fixtures/scopes/r/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.return.scope rename to resources/fixtures/scopes/r/statement/statement.return.scope diff --git a/data/fixtures/scopes/r/statement/statement.switch.scope b/resources/fixtures/scopes/r/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.switch.scope rename to resources/fixtures/scopes/r/statement/statement.switch.scope diff --git a/data/fixtures/scopes/r/statement/statement.try.scope b/resources/fixtures/scopes/r/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.try.scope rename to resources/fixtures/scopes/r/statement/statement.try.scope diff --git a/data/fixtures/scopes/r/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/r/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/r/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/r/statement/statement.while.scope b/resources/fixtures/scopes/r/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/r/statement/statement.while.scope rename to resources/fixtures/scopes/r/statement/statement.while.scope diff --git a/data/fixtures/scopes/r/string.multiLine.scope b/resources/fixtures/scopes/r/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/string.multiLine.scope rename to resources/fixtures/scopes/r/string.multiLine.scope diff --git a/data/fixtures/scopes/r/string.singleLine.scope b/resources/fixtures/scopes/r/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/string.singleLine.scope rename to resources/fixtures/scopes/r/string.singleLine.scope diff --git a/data/fixtures/scopes/r/textFragment.comment.line.scope b/resources/fixtures/scopes/r/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/r/textFragment.comment.line.scope rename to resources/fixtures/scopes/r/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/r/textFragment.string.multiLine.scope b/resources/fixtures/scopes/r/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/r/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/r/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/r/textFragment.string.singleLine.scope b/resources/fixtures/scopes/r/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/r/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/r/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/r/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/r/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/r/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/r/value/value.argument.actual.scope b/resources/fixtures/scopes/r/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.argument.actual.scope rename to resources/fixtures/scopes/r/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/r/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/r/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/r/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/r/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/r/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/r/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/r/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/r/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/r/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/r/value/value.argument.formal.scope b/resources/fixtures/scopes/r/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.argument.formal.scope rename to resources/fixtures/scopes/r/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/r/value/value.assignment.scope b/resources/fixtures/scopes/r/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.assignment.scope rename to resources/fixtures/scopes/r/value/value.assignment.scope diff --git a/data/fixtures/scopes/r/value/value.assignment2.scope b/resources/fixtures/scopes/r/value/value.assignment2.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.assignment2.scope rename to resources/fixtures/scopes/r/value/value.assignment2.scope diff --git a/data/fixtures/scopes/r/value/value.foreach.scope b/resources/fixtures/scopes/r/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.foreach.scope rename to resources/fixtures/scopes/r/value/value.foreach.scope diff --git a/data/fixtures/scopes/r/value/value.iteration.block.scope b/resources/fixtures/scopes/r/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.iteration.block.scope rename to resources/fixtures/scopes/r/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/r/value/value.iteration.block2.scope b/resources/fixtures/scopes/r/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.iteration.block2.scope rename to resources/fixtures/scopes/r/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/r/value/value.iteration.block3.scope b/resources/fixtures/scopes/r/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.iteration.block3.scope rename to resources/fixtures/scopes/r/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/r/value/value.iteration.document.scope b/resources/fixtures/scopes/r/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.iteration.document.scope rename to resources/fixtures/scopes/r/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/r/value/value.return.scope b/resources/fixtures/scopes/r/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.return.scope rename to resources/fixtures/scopes/r/value/value.return.scope diff --git a/data/fixtures/scopes/r/value/value.switch.scope b/resources/fixtures/scopes/r/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.switch.scope rename to resources/fixtures/scopes/r/value/value.switch.scope diff --git a/data/fixtures/scopes/r/value/value.variable.scope b/resources/fixtures/scopes/r/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/r/value/value.variable.scope rename to resources/fixtures/scopes/r/value/value.variable.scope diff --git a/data/fixtures/scopes/ruby/anonymousFunction.scope b/resources/fixtures/scopes/ruby/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/ruby/anonymousFunction.scope rename to resources/fixtures/scopes/ruby/anonymousFunction.scope diff --git a/data/fixtures/scopes/ruby/anonymousFunction2.scope b/resources/fixtures/scopes/ruby/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/ruby/anonymousFunction2.scope rename to resources/fixtures/scopes/ruby/anonymousFunction2.scope diff --git a/data/fixtures/scopes/ruby/anonymousFunction3.scope b/resources/fixtures/scopes/ruby/anonymousFunction3.scope similarity index 100% rename from data/fixtures/scopes/ruby/anonymousFunction3.scope rename to resources/fixtures/scopes/ruby/anonymousFunction3.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.iteration2.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.iteration2.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.iteration2.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.iteration2.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.multiLine2.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.multiLine2.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.multiLine2.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.actual.singleLine2.scope b/resources/fixtures/scopes/ruby/argument/argument.actual.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.actual.singleLine2.scope rename to resources/fixtures/scopes/ruby/argument/argument.actual.singleLine2.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/ruby/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/ruby/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.empty2.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.empty2.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.empty2.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.empty2.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine2.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine2.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.multiLine2.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine2.scope b/resources/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine2.scope rename to resources/fixtures/scopes/ruby/argumentList/argumentList.formal.singleLine2.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/ruby/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/ruby/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.if.else.scope b/resources/fixtures/scopes/ruby/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.if.else.scope rename to resources/fixtures/scopes/ruby/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.if.iteration.scope b/resources/fixtures/scopes/ruby/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/ruby/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.if.scope b/resources/fixtures/scopes/ruby/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.if.scope rename to resources/fixtures/scopes/ruby/branch/branch.if.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/ruby/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/ruby/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.switchCase.iteration2.scope b/resources/fixtures/scopes/ruby/branch/branch.switchCase.iteration2.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.switchCase.iteration2.scope rename to resources/fixtures/scopes/ruby/branch/branch.switchCase.iteration2.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.switchCase.scope b/resources/fixtures/scopes/ruby/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.switchCase.scope rename to resources/fixtures/scopes/ruby/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.switchCase2.scope b/resources/fixtures/scopes/ruby/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/ruby/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.switchCase3.scope b/resources/fixtures/scopes/ruby/branch/branch.switchCase3.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.switchCase3.scope rename to resources/fixtures/scopes/ruby/branch/branch.switchCase3.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.ternary.iteration.scope b/resources/fixtures/scopes/ruby/branch/branch.ternary.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.ternary.iteration.scope rename to resources/fixtures/scopes/ruby/branch/branch.ternary.iteration.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.ternary.scope b/resources/fixtures/scopes/ruby/branch/branch.ternary.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.ternary.scope rename to resources/fixtures/scopes/ruby/branch/branch.ternary.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.try.iteration.scope b/resources/fixtures/scopes/ruby/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/ruby/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/ruby/branch/branch.try.scope b/resources/fixtures/scopes/ruby/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/ruby/branch/branch.try.scope rename to resources/fixtures/scopes/ruby/branch/branch.try.scope diff --git a/data/fixtures/scopes/ruby/class.iteration.class.scope b/resources/fixtures/scopes/ruby/class.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/class.iteration.class.scope rename to resources/fixtures/scopes/ruby/class.iteration.class.scope diff --git a/data/fixtures/scopes/ruby/class.iteration.document.scope b/resources/fixtures/scopes/ruby/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/ruby/class.iteration.document.scope rename to resources/fixtures/scopes/ruby/class.iteration.document.scope diff --git a/data/fixtures/scopes/ruby/class.scope b/resources/fixtures/scopes/ruby/class.scope similarity index 100% rename from data/fixtures/scopes/ruby/class.scope rename to resources/fixtures/scopes/ruby/class.scope diff --git a/data/fixtures/scopes/ruby/comment.block.scope b/resources/fixtures/scopes/ruby/comment.block.scope similarity index 100% rename from data/fixtures/scopes/ruby/comment.block.scope rename to resources/fixtures/scopes/ruby/comment.block.scope diff --git a/data/fixtures/scopes/ruby/comment.line.scope b/resources/fixtures/scopes/ruby/comment.line.scope similarity index 100% rename from data/fixtures/scopes/ruby/comment.line.scope rename to resources/fixtures/scopes/ruby/comment.line.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.if.scope b/resources/fixtures/scopes/ruby/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.if.scope rename to resources/fixtures/scopes/ruby/condition/condition.if.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/ruby/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/ruby/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.switchCase.iteration2.scope b/resources/fixtures/scopes/ruby/condition/condition.switchCase.iteration2.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.switchCase.iteration2.scope rename to resources/fixtures/scopes/ruby/condition/condition.switchCase.iteration2.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.switchCase.scope b/resources/fixtures/scopes/ruby/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.switchCase.scope rename to resources/fixtures/scopes/ruby/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.switchCase2.scope b/resources/fixtures/scopes/ruby/condition/condition.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.switchCase2.scope rename to resources/fixtures/scopes/ruby/condition/condition.switchCase2.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.switchCase3.scope b/resources/fixtures/scopes/ruby/condition/condition.switchCase3.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.switchCase3.scope rename to resources/fixtures/scopes/ruby/condition/condition.switchCase3.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.switchCase4.scope b/resources/fixtures/scopes/ruby/condition/condition.switchCase4.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.switchCase4.scope rename to resources/fixtures/scopes/ruby/condition/condition.switchCase4.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.ternary.scope b/resources/fixtures/scopes/ruby/condition/condition.ternary.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.ternary.scope rename to resources/fixtures/scopes/ruby/condition/condition.ternary.scope diff --git a/data/fixtures/scopes/ruby/condition/condition.while.scope b/resources/fixtures/scopes/ruby/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/ruby/condition/condition.while.scope rename to resources/fixtures/scopes/ruby/condition/condition.while.scope diff --git a/data/fixtures/scopes/ruby/disqualifyDelimiter.scope b/resources/fixtures/scopes/ruby/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/ruby/disqualifyDelimiter.scope rename to resources/fixtures/scopes/ruby/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/ruby/functionCall/functionCall.chain.scope b/resources/fixtures/scopes/ruby/functionCall/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/ruby/functionCall/functionCall.chain.scope rename to resources/fixtures/scopes/ruby/functionCall/functionCall.chain.scope diff --git a/data/fixtures/scopes/ruby/functionCall/functionCall.method.scope b/resources/fixtures/scopes/ruby/functionCall/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/functionCall/functionCall.method.scope rename to resources/fixtures/scopes/ruby/functionCall/functionCall.method.scope diff --git a/data/fixtures/scopes/ruby/functionCall/functionCall.scope b/resources/fixtures/scopes/ruby/functionCall/functionCall.scope similarity index 100% rename from data/fixtures/scopes/ruby/functionCall/functionCall.scope rename to resources/fixtures/scopes/ruby/functionCall/functionCall.scope diff --git a/data/fixtures/scopes/ruby/functionCallee/functionCallee.chain.scope b/resources/fixtures/scopes/ruby/functionCallee/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/ruby/functionCallee/functionCallee.chain.scope rename to resources/fixtures/scopes/ruby/functionCallee/functionCallee.chain.scope diff --git a/data/fixtures/scopes/ruby/functionCallee/functionCallee.method.scope b/resources/fixtures/scopes/ruby/functionCallee/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/functionCallee/functionCallee.method.scope rename to resources/fixtures/scopes/ruby/functionCallee/functionCallee.method.scope diff --git a/data/fixtures/scopes/ruby/functionCallee/functionCallee.scope b/resources/fixtures/scopes/ruby/functionCallee/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/ruby/functionCallee/functionCallee.scope rename to resources/fixtures/scopes/ruby/functionCallee/functionCallee.scope diff --git a/data/fixtures/scopes/ruby/ifStatement.scope b/resources/fixtures/scopes/ruby/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/ruby/ifStatement.scope rename to resources/fixtures/scopes/ruby/ifStatement.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.class.scope b/resources/fixtures/scopes/ruby/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.class.scope rename to resources/fixtures/scopes/ruby/interior/interior.class.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.foreach.scope b/resources/fixtures/scopes/ruby/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.foreach.scope rename to resources/fixtures/scopes/ruby/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.function.scope b/resources/fixtures/scopes/ruby/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.function.scope rename to resources/fixtures/scopes/ruby/interior/interior.function.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.function2.scope b/resources/fixtures/scopes/ruby/interior/interior.function2.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.function2.scope rename to resources/fixtures/scopes/ruby/interior/interior.function2.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.function3.scope b/resources/fixtures/scopes/ruby/interior/interior.function3.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.function3.scope rename to resources/fixtures/scopes/ruby/interior/interior.function3.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.function4.scope b/resources/fixtures/scopes/ruby/interior/interior.function4.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.function4.scope rename to resources/fixtures/scopes/ruby/interior/interior.function4.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.if.scope b/resources/fixtures/scopes/ruby/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.if.scope rename to resources/fixtures/scopes/ruby/interior/interior.if.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.if2.scope b/resources/fixtures/scopes/ruby/interior/interior.if2.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.if2.scope rename to resources/fixtures/scopes/ruby/interior/interior.if2.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.if3.scope b/resources/fixtures/scopes/ruby/interior/interior.if3.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.if3.scope rename to resources/fixtures/scopes/ruby/interior/interior.if3.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.lambda.scope b/resources/fixtures/scopes/ruby/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.lambda.scope rename to resources/fixtures/scopes/ruby/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.method.scope b/resources/fixtures/scopes/ruby/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.method.scope rename to resources/fixtures/scopes/ruby/interior/interior.method.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.switch.scope b/resources/fixtures/scopes/ruby/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.switch.scope rename to resources/fixtures/scopes/ruby/interior/interior.switch.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.switch2.scope b/resources/fixtures/scopes/ruby/interior/interior.switch2.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.switch2.scope rename to resources/fixtures/scopes/ruby/interior/interior.switch2.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.switchCase.scope b/resources/fixtures/scopes/ruby/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.switchCase.scope rename to resources/fixtures/scopes/ruby/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.switchCase2.scope b/resources/fixtures/scopes/ruby/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/ruby/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.try.scope b/resources/fixtures/scopes/ruby/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.try.scope rename to resources/fixtures/scopes/ruby/interior/interior.try.scope diff --git a/data/fixtures/scopes/ruby/interior/interior.while.scope b/resources/fixtures/scopes/ruby/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/ruby/interior/interior.while.scope rename to resources/fixtures/scopes/ruby/interior/interior.while.scope diff --git a/data/fixtures/scopes/ruby/key/key.mapPair.iteration.scope b/resources/fixtures/scopes/ruby/key/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/key/key.mapPair.iteration.scope rename to resources/fixtures/scopes/ruby/key/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/ruby/key/key.mapPair.scope b/resources/fixtures/scopes/ruby/key/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/ruby/key/key.mapPair.scope rename to resources/fixtures/scopes/ruby/key/key.mapPair.scope diff --git a/data/fixtures/scopes/ruby/list.scope b/resources/fixtures/scopes/ruby/list.scope similarity index 100% rename from data/fixtures/scopes/ruby/list.scope rename to resources/fixtures/scopes/ruby/list.scope diff --git a/data/fixtures/scopes/ruby/list2.scope b/resources/fixtures/scopes/ruby/list2.scope similarity index 100% rename from data/fixtures/scopes/ruby/list2.scope rename to resources/fixtures/scopes/ruby/list2.scope diff --git a/data/fixtures/scopes/ruby/list3.scope b/resources/fixtures/scopes/ruby/list3.scope similarity index 100% rename from data/fixtures/scopes/ruby/list3.scope rename to resources/fixtures/scopes/ruby/list3.scope diff --git a/data/fixtures/scopes/ruby/map.scope b/resources/fixtures/scopes/ruby/map.scope similarity index 100% rename from data/fixtures/scopes/ruby/map.scope rename to resources/fixtures/scopes/ruby/map.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/ruby/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/ruby/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.actual.scope b/resources/fixtures/scopes/ruby/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.actual.scope rename to resources/fixtures/scopes/ruby/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/ruby/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/ruby/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/ruby/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/ruby/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/ruby/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/ruby/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/ruby/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/ruby/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.formal.method.scope b/resources/fixtures/scopes/ruby/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/ruby/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/ruby/name/name.argument.formal.scope b/resources/fixtures/scopes/ruby/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.argument.formal.scope rename to resources/fixtures/scopes/ruby/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/ruby/name/name.assignment.scope b/resources/fixtures/scopes/ruby/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.assignment.scope rename to resources/fixtures/scopes/ruby/name/name.assignment.scope diff --git a/data/fixtures/scopes/ruby/name/name.class.scope b/resources/fixtures/scopes/ruby/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.class.scope rename to resources/fixtures/scopes/ruby/name/name.class.scope diff --git a/data/fixtures/scopes/ruby/name/name.foreach.scope b/resources/fixtures/scopes/ruby/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.foreach.scope rename to resources/fixtures/scopes/ruby/name/name.foreach.scope diff --git a/data/fixtures/scopes/ruby/name/name.function.scope b/resources/fixtures/scopes/ruby/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.function.scope rename to resources/fixtures/scopes/ruby/name/name.function.scope diff --git a/data/fixtures/scopes/ruby/name/name.function2.scope b/resources/fixtures/scopes/ruby/name/name.function2.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.function2.scope rename to resources/fixtures/scopes/ruby/name/name.function2.scope diff --git a/data/fixtures/scopes/ruby/name/name.function3.scope b/resources/fixtures/scopes/ruby/name/name.function3.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.function3.scope rename to resources/fixtures/scopes/ruby/name/name.function3.scope diff --git a/data/fixtures/scopes/ruby/name/name.function4.scope b/resources/fixtures/scopes/ruby/name/name.function4.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.function4.scope rename to resources/fixtures/scopes/ruby/name/name.function4.scope diff --git a/data/fixtures/scopes/ruby/name/name.iteration.block.scope b/resources/fixtures/scopes/ruby/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.iteration.block.scope rename to resources/fixtures/scopes/ruby/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/ruby/name/name.iteration.block2.scope b/resources/fixtures/scopes/ruby/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.iteration.block2.scope rename to resources/fixtures/scopes/ruby/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/ruby/name/name.iteration.block3.scope b/resources/fixtures/scopes/ruby/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.iteration.block3.scope rename to resources/fixtures/scopes/ruby/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/ruby/name/name.iteration.block4.scope b/resources/fixtures/scopes/ruby/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.iteration.block4.scope rename to resources/fixtures/scopes/ruby/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/ruby/name/name.iteration.class.scope b/resources/fixtures/scopes/ruby/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.iteration.class.scope rename to resources/fixtures/scopes/ruby/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/ruby/name/name.iteration.document.scope b/resources/fixtures/scopes/ruby/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.iteration.document.scope rename to resources/fixtures/scopes/ruby/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/ruby/name/name.method.scope b/resources/fixtures/scopes/ruby/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/name/name.method.scope rename to resources/fixtures/scopes/ruby/name/name.method.scope diff --git a/data/fixtures/scopes/ruby/namedFunction.iteration.class.scope b/resources/fixtures/scopes/ruby/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/ruby/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/ruby/namedFunction.iteration.document.scope b/resources/fixtures/scopes/ruby/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/ruby/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/ruby/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/ruby/namedFunction.method.scope b/resources/fixtures/scopes/ruby/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/namedFunction.method.scope rename to resources/fixtures/scopes/ruby/namedFunction.method.scope diff --git a/data/fixtures/scopes/ruby/namedFunction.scope b/resources/fixtures/scopes/ruby/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/ruby/namedFunction.scope rename to resources/fixtures/scopes/ruby/namedFunction.scope diff --git a/data/fixtures/scopes/ruby/namedFunction2.scope b/resources/fixtures/scopes/ruby/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/ruby/namedFunction2.scope rename to resources/fixtures/scopes/ruby/namedFunction2.scope diff --git a/data/fixtures/scopes/ruby/namedFunction3.scope b/resources/fixtures/scopes/ruby/namedFunction3.scope similarity index 100% rename from data/fixtures/scopes/ruby/namedFunction3.scope rename to resources/fixtures/scopes/ruby/namedFunction3.scope diff --git a/data/fixtures/scopes/ruby/namedFunction4.scope b/resources/fixtures/scopes/ruby/namedFunction4.scope similarity index 100% rename from data/fixtures/scopes/ruby/namedFunction4.scope rename to resources/fixtures/scopes/ruby/namedFunction4.scope diff --git a/data/fixtures/scopes/ruby/regularExpression.scope b/resources/fixtures/scopes/ruby/regularExpression.scope similarity index 100% rename from data/fixtures/scopes/ruby/regularExpression.scope rename to resources/fixtures/scopes/ruby/regularExpression.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.assignment.scope b/resources/fixtures/scopes/ruby/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.assignment.scope rename to resources/fixtures/scopes/ruby/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.break.scope b/resources/fixtures/scopes/ruby/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.break.scope rename to resources/fixtures/scopes/ruby/statement/statement.break.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.class.scope b/resources/fixtures/scopes/ruby/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.class.scope rename to resources/fixtures/scopes/ruby/statement/statement.class.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.continue.scope b/resources/fixtures/scopes/ruby/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.continue.scope rename to resources/fixtures/scopes/ruby/statement/statement.continue.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.foreach.scope b/resources/fixtures/scopes/ruby/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.foreach.scope rename to resources/fixtures/scopes/ruby/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.function.scope b/resources/fixtures/scopes/ruby/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.function.scope rename to resources/fixtures/scopes/ruby/statement/statement.function.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.function2.scope b/resources/fixtures/scopes/ruby/statement/statement.function2.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.function2.scope rename to resources/fixtures/scopes/ruby/statement/statement.function2.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.function3.scope b/resources/fixtures/scopes/ruby/statement/statement.function3.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.function3.scope rename to resources/fixtures/scopes/ruby/statement/statement.function3.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.function4.scope b/resources/fixtures/scopes/ruby/statement/statement.function4.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.function4.scope rename to resources/fixtures/scopes/ruby/statement/statement.function4.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.functionCall.scope b/resources/fixtures/scopes/ruby/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.functionCall.scope rename to resources/fixtures/scopes/ruby/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.if.scope b/resources/fixtures/scopes/ruby/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.if.scope rename to resources/fixtures/scopes/ruby/statement/statement.if.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.iteration.block.scope b/resources/fixtures/scopes/ruby/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/ruby/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/ruby/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/ruby/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/ruby/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/ruby/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/ruby/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/ruby/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.iteration.class.scope b/resources/fixtures/scopes/ruby/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/ruby/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.iteration.document.scope b/resources/fixtures/scopes/ruby/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/ruby/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.method.scope b/resources/fixtures/scopes/ruby/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.method.scope rename to resources/fixtures/scopes/ruby/statement/statement.method.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.misc.scope b/resources/fixtures/scopes/ruby/statement/statement.misc.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.misc.scope rename to resources/fixtures/scopes/ruby/statement/statement.misc.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.return.scope b/resources/fixtures/scopes/ruby/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.return.scope rename to resources/fixtures/scopes/ruby/statement/statement.return.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.switch.scope b/resources/fixtures/scopes/ruby/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.switch.scope rename to resources/fixtures/scopes/ruby/statement/statement.switch.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.switch2.scope b/resources/fixtures/scopes/ruby/statement/statement.switch2.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.switch2.scope rename to resources/fixtures/scopes/ruby/statement/statement.switch2.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.throw.scope b/resources/fixtures/scopes/ruby/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.throw.scope rename to resources/fixtures/scopes/ruby/statement/statement.throw.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.try.scope b/resources/fixtures/scopes/ruby/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.try.scope rename to resources/fixtures/scopes/ruby/statement/statement.try.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/ruby/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/ruby/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.while.scope b/resources/fixtures/scopes/ruby/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.while.scope rename to resources/fixtures/scopes/ruby/statement/statement.while.scope diff --git a/data/fixtures/scopes/ruby/statement/statement.yield.scope b/resources/fixtures/scopes/ruby/statement/statement.yield.scope similarity index 100% rename from data/fixtures/scopes/ruby/statement/statement.yield.scope rename to resources/fixtures/scopes/ruby/statement/statement.yield.scope diff --git a/data/fixtures/scopes/ruby/string.multiLine.scope b/resources/fixtures/scopes/ruby/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/string.multiLine.scope rename to resources/fixtures/scopes/ruby/string.multiLine.scope diff --git a/data/fixtures/scopes/ruby/string.singleLine.scope b/resources/fixtures/scopes/ruby/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/string.singleLine.scope rename to resources/fixtures/scopes/ruby/string.singleLine.scope diff --git a/data/fixtures/scopes/ruby/textFragment.comment.block.scope b/resources/fixtures/scopes/ruby/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/ruby/textFragment.comment.block.scope rename to resources/fixtures/scopes/ruby/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/ruby/textFragment.comment.line.scope b/resources/fixtures/scopes/ruby/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/ruby/textFragment.comment.line.scope rename to resources/fixtures/scopes/ruby/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/ruby/textFragment.string.multiLine.scope b/resources/fixtures/scopes/ruby/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/ruby/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/ruby/textFragment.string.singleLine.scope b/resources/fixtures/scopes/ruby/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/ruby/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/ruby/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/ruby/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/ruby/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.actual.scope b/resources/fixtures/scopes/ruby/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.actual.scope rename to resources/fixtures/scopes/ruby/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/ruby/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/ruby/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/ruby/value/value.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/ruby/value/value.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.formal.lambda.scope b/resources/fixtures/scopes/ruby/value/value.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.formal.lambda.scope rename to resources/fixtures/scopes/ruby/value/value.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/ruby/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/ruby/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.formal.method.scope b/resources/fixtures/scopes/ruby/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/ruby/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/ruby/value/value.argument.formal.scope b/resources/fixtures/scopes/ruby/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.argument.formal.scope rename to resources/fixtures/scopes/ruby/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/ruby/value/value.assignment.scope b/resources/fixtures/scopes/ruby/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.assignment.scope rename to resources/fixtures/scopes/ruby/value/value.assignment.scope diff --git a/data/fixtures/scopes/ruby/value/value.foreach.scope b/resources/fixtures/scopes/ruby/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.foreach.scope rename to resources/fixtures/scopes/ruby/value/value.foreach.scope diff --git a/data/fixtures/scopes/ruby/value/value.iteration.block.scope b/resources/fixtures/scopes/ruby/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.iteration.block.scope rename to resources/fixtures/scopes/ruby/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/ruby/value/value.iteration.block2.scope b/resources/fixtures/scopes/ruby/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.iteration.block2.scope rename to resources/fixtures/scopes/ruby/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/ruby/value/value.iteration.block3.scope b/resources/fixtures/scopes/ruby/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.iteration.block3.scope rename to resources/fixtures/scopes/ruby/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/ruby/value/value.iteration.block4.scope b/resources/fixtures/scopes/ruby/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.iteration.block4.scope rename to resources/fixtures/scopes/ruby/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/ruby/value/value.iteration.class.scope b/resources/fixtures/scopes/ruby/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.iteration.class.scope rename to resources/fixtures/scopes/ruby/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/ruby/value/value.iteration.document.scope b/resources/fixtures/scopes/ruby/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.iteration.document.scope rename to resources/fixtures/scopes/ruby/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/ruby/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/ruby/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/ruby/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/ruby/value/value.mapPair.scope b/resources/fixtures/scopes/ruby/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.mapPair.scope rename to resources/fixtures/scopes/ruby/value/value.mapPair.scope diff --git a/data/fixtures/scopes/ruby/value/value.return.lambda.scope b/resources/fixtures/scopes/ruby/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.return.lambda.scope rename to resources/fixtures/scopes/ruby/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/ruby/value/value.return.scope b/resources/fixtures/scopes/ruby/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.return.scope rename to resources/fixtures/scopes/ruby/value/value.return.scope diff --git a/data/fixtures/scopes/ruby/value/value.switch.scope b/resources/fixtures/scopes/ruby/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.switch.scope rename to resources/fixtures/scopes/ruby/value/value.switch.scope diff --git a/data/fixtures/scopes/ruby/value/value.switch2.scope b/resources/fixtures/scopes/ruby/value/value.switch2.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.switch2.scope rename to resources/fixtures/scopes/ruby/value/value.switch2.scope diff --git a/data/fixtures/scopes/ruby/value/value.throw.scope b/resources/fixtures/scopes/ruby/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.throw.scope rename to resources/fixtures/scopes/ruby/value/value.throw.scope diff --git a/data/fixtures/scopes/ruby/value/value.variable.scope b/resources/fixtures/scopes/ruby/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.variable.scope rename to resources/fixtures/scopes/ruby/value/value.variable.scope diff --git a/data/fixtures/scopes/ruby/value/value.yield.scope b/resources/fixtures/scopes/ruby/value/value.yield.scope similarity index 100% rename from data/fixtures/scopes/ruby/value/value.yield.scope rename to resources/fixtures/scopes/ruby/value/value.yield.scope diff --git a/data/fixtures/scopes/rust/anonymousFunction.scope b/resources/fixtures/scopes/rust/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/rust/anonymousFunction.scope rename to resources/fixtures/scopes/rust/anonymousFunction.scope diff --git a/data/fixtures/scopes/rust/anonymousFunction2.scope b/resources/fixtures/scopes/rust/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/rust/anonymousFunction2.scope rename to resources/fixtures/scopes/rust/anonymousFunction2.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.enum.iteration.scope b/resources/fixtures/scopes/rust/argument/argument.actual.enum.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.enum.iteration.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.enum.iteration.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.enum.multiLine.scope b/resources/fixtures/scopes/rust/argument/argument.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.enum.multiLine.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.enum.singleLine.scope b/resources/fixtures/scopes/rust/argument/argument.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.enum.singleLine.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/rust/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/rust/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/rust/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/rust/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/rust/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/rust/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/rust/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/rust/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/rust/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.lambda.iteration2.scope b/resources/fixtures/scopes/rust/argument/argument.formal.lambda.iteration2.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.lambda.iteration2.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.lambda.iteration2.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine2.scope b/resources/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine2.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.lambda.multiLine2.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine2.scope b/resources/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine2.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.lambda.singleLine2.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/rust/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/rust/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/rust/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/rust/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/rust/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/rust/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/rust/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.enum.empty.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.enum.empty.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.enum.empty.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.enum.empty.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.enum.multiLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.enum.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.enum.multiLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.enum.multiLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.enum.singleLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.enum.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.enum.singleLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.enum.singleLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/rust/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/rust/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/rust/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/rust/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/rust/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/rust/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/rust/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/rust/branch/branch.if.else.scope b/resources/fixtures/scopes/rust/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/rust/branch/branch.if.else.scope rename to resources/fixtures/scopes/rust/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/rust/branch/branch.if.iteration.scope b/resources/fixtures/scopes/rust/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/rust/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/rust/branch/branch.if.scope b/resources/fixtures/scopes/rust/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/rust/branch/branch.if.scope rename to resources/fixtures/scopes/rust/branch/branch.if.scope diff --git a/data/fixtures/scopes/rust/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/rust/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/rust/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/rust/branch/branch.switchCase.scope b/resources/fixtures/scopes/rust/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/rust/branch/branch.switchCase.scope rename to resources/fixtures/scopes/rust/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/rust/branch/branch.switchCase2.scope b/resources/fixtures/scopes/rust/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/rust/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/rust/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/rust/class.iteration.document.scope b/resources/fixtures/scopes/rust/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/rust/class.iteration.document.scope rename to resources/fixtures/scopes/rust/class.iteration.document.scope diff --git a/data/fixtures/scopes/rust/class.scope b/resources/fixtures/scopes/rust/class.scope similarity index 100% rename from data/fixtures/scopes/rust/class.scope rename to resources/fixtures/scopes/rust/class.scope diff --git a/data/fixtures/scopes/rust/comment.block.scope b/resources/fixtures/scopes/rust/comment.block.scope similarity index 100% rename from data/fixtures/scopes/rust/comment.block.scope rename to resources/fixtures/scopes/rust/comment.block.scope diff --git a/data/fixtures/scopes/rust/comment.line.scope b/resources/fixtures/scopes/rust/comment.line.scope similarity index 100% rename from data/fixtures/scopes/rust/comment.line.scope rename to resources/fixtures/scopes/rust/comment.line.scope diff --git a/data/fixtures/scopes/rust/condition.if.scope b/resources/fixtures/scopes/rust/condition.if.scope similarity index 100% rename from data/fixtures/scopes/rust/condition.if.scope rename to resources/fixtures/scopes/rust/condition.if.scope diff --git a/data/fixtures/scopes/rust/condition.switchCase.iteration.scope b/resources/fixtures/scopes/rust/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/rust/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/rust/condition.switchCase.scope b/resources/fixtures/scopes/rust/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/rust/condition.switchCase.scope rename to resources/fixtures/scopes/rust/condition.switchCase.scope diff --git a/data/fixtures/scopes/rust/condition.switchCase2.scope b/resources/fixtures/scopes/rust/condition.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/rust/condition.switchCase2.scope rename to resources/fixtures/scopes/rust/condition.switchCase2.scope diff --git a/data/fixtures/scopes/rust/condition.while.scope b/resources/fixtures/scopes/rust/condition.while.scope similarity index 100% rename from data/fixtures/scopes/rust/condition.while.scope rename to resources/fixtures/scopes/rust/condition.while.scope diff --git a/data/fixtures/scopes/rust/disqualifyDelimiter.scope b/resources/fixtures/scopes/rust/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/rust/disqualifyDelimiter.scope rename to resources/fixtures/scopes/rust/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/rust/functionCall.chain.scope b/resources/fixtures/scopes/rust/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCall.chain.scope rename to resources/fixtures/scopes/rust/functionCall.chain.scope diff --git a/data/fixtures/scopes/rust/functionCall.enum.scope b/resources/fixtures/scopes/rust/functionCall.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCall.enum.scope rename to resources/fixtures/scopes/rust/functionCall.enum.scope diff --git a/data/fixtures/scopes/rust/functionCall.generic.scope b/resources/fixtures/scopes/rust/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCall.generic.scope rename to resources/fixtures/scopes/rust/functionCall.generic.scope diff --git a/data/fixtures/scopes/rust/functionCall.method.scope b/resources/fixtures/scopes/rust/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCall.method.scope rename to resources/fixtures/scopes/rust/functionCall.method.scope diff --git a/data/fixtures/scopes/rust/functionCall.scope b/resources/fixtures/scopes/rust/functionCall.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCall.scope rename to resources/fixtures/scopes/rust/functionCall.scope diff --git a/data/fixtures/scopes/rust/functionCallee.chain.scope b/resources/fixtures/scopes/rust/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCallee.chain.scope rename to resources/fixtures/scopes/rust/functionCallee.chain.scope diff --git a/data/fixtures/scopes/rust/functionCallee.enum.scope b/resources/fixtures/scopes/rust/functionCallee.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCallee.enum.scope rename to resources/fixtures/scopes/rust/functionCallee.enum.scope diff --git a/data/fixtures/scopes/rust/functionCallee.generic.scope b/resources/fixtures/scopes/rust/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCallee.generic.scope rename to resources/fixtures/scopes/rust/functionCallee.generic.scope diff --git a/data/fixtures/scopes/rust/functionCallee.method.scope b/resources/fixtures/scopes/rust/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCallee.method.scope rename to resources/fixtures/scopes/rust/functionCallee.method.scope diff --git a/data/fixtures/scopes/rust/functionCallee.scope b/resources/fixtures/scopes/rust/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/rust/functionCallee.scope rename to resources/fixtures/scopes/rust/functionCallee.scope diff --git a/data/fixtures/scopes/rust/ifStatement.scope b/resources/fixtures/scopes/rust/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/rust/ifStatement.scope rename to resources/fixtures/scopes/rust/ifStatement.scope diff --git a/data/fixtures/scopes/rust/interior/interior.class.scope b/resources/fixtures/scopes/rust/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.class.scope rename to resources/fixtures/scopes/rust/interior/interior.class.scope diff --git a/data/fixtures/scopes/rust/interior/interior.class2.scope b/resources/fixtures/scopes/rust/interior/interior.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.class2.scope rename to resources/fixtures/scopes/rust/interior/interior.class2.scope diff --git a/data/fixtures/scopes/rust/interior/interior.class3.scope b/resources/fixtures/scopes/rust/interior/interior.class3.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.class3.scope rename to resources/fixtures/scopes/rust/interior/interior.class3.scope diff --git a/data/fixtures/scopes/rust/interior/interior.enum.scope b/resources/fixtures/scopes/rust/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.enum.scope rename to resources/fixtures/scopes/rust/interior/interior.enum.scope diff --git a/data/fixtures/scopes/rust/interior/interior.foreach.scope b/resources/fixtures/scopes/rust/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.foreach.scope rename to resources/fixtures/scopes/rust/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/rust/interior/interior.function.scope b/resources/fixtures/scopes/rust/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.function.scope rename to resources/fixtures/scopes/rust/interior/interior.function.scope diff --git a/data/fixtures/scopes/rust/interior/interior.if.scope b/resources/fixtures/scopes/rust/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.if.scope rename to resources/fixtures/scopes/rust/interior/interior.if.scope diff --git a/data/fixtures/scopes/rust/interior/interior.lambda.scope b/resources/fixtures/scopes/rust/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.lambda.scope rename to resources/fixtures/scopes/rust/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/rust/interior/interior.method.scope b/resources/fixtures/scopes/rust/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.method.scope rename to resources/fixtures/scopes/rust/interior/interior.method.scope diff --git a/data/fixtures/scopes/rust/interior/interior.namespace.scope b/resources/fixtures/scopes/rust/interior/interior.namespace.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.namespace.scope rename to resources/fixtures/scopes/rust/interior/interior.namespace.scope diff --git a/data/fixtures/scopes/rust/interior/interior.switch.scope b/resources/fixtures/scopes/rust/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.switch.scope rename to resources/fixtures/scopes/rust/interior/interior.switch.scope diff --git a/data/fixtures/scopes/rust/interior/interior.switchCase.scope b/resources/fixtures/scopes/rust/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.switchCase.scope rename to resources/fixtures/scopes/rust/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/rust/interior/interior.switchCase2.scope b/resources/fixtures/scopes/rust/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/rust/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/rust/interior/interior.while.scope b/resources/fixtures/scopes/rust/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/rust/interior/interior.while.scope rename to resources/fixtures/scopes/rust/interior/interior.while.scope diff --git a/data/fixtures/scopes/rust/key.mapPair.iteration.scope b/resources/fixtures/scopes/rust/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/key.mapPair.iteration.scope rename to resources/fixtures/scopes/rust/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/rust/key.mapPair.scope b/resources/fixtures/scopes/rust/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/rust/key.mapPair.scope rename to resources/fixtures/scopes/rust/key.mapPair.scope diff --git a/data/fixtures/scopes/rust/list.scope b/resources/fixtures/scopes/rust/list.scope similarity index 100% rename from data/fixtures/scopes/rust/list.scope rename to resources/fixtures/scopes/rust/list.scope diff --git a/data/fixtures/scopes/rust/list2.scope b/resources/fixtures/scopes/rust/list2.scope similarity index 100% rename from data/fixtures/scopes/rust/list2.scope rename to resources/fixtures/scopes/rust/list2.scope diff --git a/data/fixtures/scopes/rust/map.scope b/resources/fixtures/scopes/rust/map.scope similarity index 100% rename from data/fixtures/scopes/rust/map.scope rename to resources/fixtures/scopes/rust/map.scope diff --git a/data/fixtures/scopes/rust/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/rust/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/rust/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/rust/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/rust/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/rust/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/rust/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/rust/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/rust/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/rust/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/rust/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/rust/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/rust/name/name.argument.formal.method.scope b/resources/fixtures/scopes/rust/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/rust/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/rust/name/name.argument.formal.scope b/resources/fixtures/scopes/rust/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.argument.formal.scope rename to resources/fixtures/scopes/rust/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/rust/name/name.assignment.compound.scope b/resources/fixtures/scopes/rust/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.assignment.compound.scope rename to resources/fixtures/scopes/rust/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/rust/name/name.assignment.destructuring.scope b/resources/fixtures/scopes/rust/name/name.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.assignment.destructuring.scope rename to resources/fixtures/scopes/rust/name/name.assignment.destructuring.scope diff --git a/data/fixtures/scopes/rust/name/name.assignment.scope b/resources/fixtures/scopes/rust/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.assignment.scope rename to resources/fixtures/scopes/rust/name/name.assignment.scope diff --git a/data/fixtures/scopes/rust/name/name.class.scope b/resources/fixtures/scopes/rust/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.class.scope rename to resources/fixtures/scopes/rust/name/name.class.scope diff --git a/data/fixtures/scopes/rust/name/name.class2.scope b/resources/fixtures/scopes/rust/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.class2.scope rename to resources/fixtures/scopes/rust/name/name.class2.scope diff --git a/data/fixtures/scopes/rust/name/name.constant.scope b/resources/fixtures/scopes/rust/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.constant.scope rename to resources/fixtures/scopes/rust/name/name.constant.scope diff --git a/data/fixtures/scopes/rust/name/name.enum.scope b/resources/fixtures/scopes/rust/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.enum.scope rename to resources/fixtures/scopes/rust/name/name.enum.scope diff --git a/data/fixtures/scopes/rust/name/name.field.class.scope b/resources/fixtures/scopes/rust/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.field.class.scope rename to resources/fixtures/scopes/rust/name/name.field.class.scope diff --git a/data/fixtures/scopes/rust/name/name.field.enum.scope b/resources/fixtures/scopes/rust/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.field.enum.scope rename to resources/fixtures/scopes/rust/name/name.field.enum.scope diff --git a/data/fixtures/scopes/rust/name/name.foreach.scope b/resources/fixtures/scopes/rust/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.foreach.scope rename to resources/fixtures/scopes/rust/name/name.foreach.scope diff --git a/data/fixtures/scopes/rust/name/name.function.scope b/resources/fixtures/scopes/rust/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.function.scope rename to resources/fixtures/scopes/rust/name/name.function.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.block.scope b/resources/fixtures/scopes/rust/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.block.scope rename to resources/fixtures/scopes/rust/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.block2.scope b/resources/fixtures/scopes/rust/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.block2.scope rename to resources/fixtures/scopes/rust/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.block3.scope b/resources/fixtures/scopes/rust/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.block3.scope rename to resources/fixtures/scopes/rust/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.class.scope b/resources/fixtures/scopes/rust/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.class.scope rename to resources/fixtures/scopes/rust/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.class2.scope b/resources/fixtures/scopes/rust/name/name.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.class2.scope rename to resources/fixtures/scopes/rust/name/name.iteration.class2.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.class3.scope b/resources/fixtures/scopes/rust/name/name.iteration.class3.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.class3.scope rename to resources/fixtures/scopes/rust/name/name.iteration.class3.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.document.scope b/resources/fixtures/scopes/rust/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.document.scope rename to resources/fixtures/scopes/rust/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/rust/name/name.iteration.enum.scope b/resources/fixtures/scopes/rust/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.iteration.enum.scope rename to resources/fixtures/scopes/rust/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/rust/name/name.method.scope b/resources/fixtures/scopes/rust/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.method.scope rename to resources/fixtures/scopes/rust/name/name.method.scope diff --git a/data/fixtures/scopes/rust/name/name.namespace.scope b/resources/fixtures/scopes/rust/name/name.namespace.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.namespace.scope rename to resources/fixtures/scopes/rust/name/name.namespace.scope diff --git a/data/fixtures/scopes/rust/name/name.typeAlias.scope b/resources/fixtures/scopes/rust/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.typeAlias.scope rename to resources/fixtures/scopes/rust/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/rust/name/name.variable.destructuring.scope b/resources/fixtures/scopes/rust/name/name.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.variable.destructuring.scope rename to resources/fixtures/scopes/rust/name/name.variable.destructuring.scope diff --git a/data/fixtures/scopes/rust/name/name.variable.initialized.scope b/resources/fixtures/scopes/rust/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.variable.initialized.scope rename to resources/fixtures/scopes/rust/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/rust/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/rust/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/rust/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/rust/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/rust/name/namedFunction.iteration.class.scope b/resources/fixtures/scopes/rust/name/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/rust/name/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/rust/name/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/rust/namedFunction.iteration.class.scope b/resources/fixtures/scopes/rust/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/rust/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/rust/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/rust/namedFunction.iteration.document.scope b/resources/fixtures/scopes/rust/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/rust/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/rust/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/rust/namedFunction.method.scope b/resources/fixtures/scopes/rust/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/rust/namedFunction.method.scope rename to resources/fixtures/scopes/rust/namedFunction.method.scope diff --git a/data/fixtures/scopes/rust/namedFunction.scope b/resources/fixtures/scopes/rust/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/rust/namedFunction.scope rename to resources/fixtures/scopes/rust/namedFunction.scope diff --git a/data/fixtures/scopes/rust/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/rust/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/rust/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/rust/statement/statement.assignment.destructuring.scope b/resources/fixtures/scopes/rust/statement/statement.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.assignment.destructuring.scope rename to resources/fixtures/scopes/rust/statement/statement.assignment.destructuring.scope diff --git a/data/fixtures/scopes/rust/statement/statement.assignment.scope b/resources/fixtures/scopes/rust/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.assignment.scope rename to resources/fixtures/scopes/rust/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/rust/statement/statement.break.scope b/resources/fixtures/scopes/rust/statement/statement.break.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.break.scope rename to resources/fixtures/scopes/rust/statement/statement.break.scope diff --git a/data/fixtures/scopes/rust/statement/statement.class.scope b/resources/fixtures/scopes/rust/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.class.scope rename to resources/fixtures/scopes/rust/statement/statement.class.scope diff --git a/data/fixtures/scopes/rust/statement/statement.class2.scope b/resources/fixtures/scopes/rust/statement/statement.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.class2.scope rename to resources/fixtures/scopes/rust/statement/statement.class2.scope diff --git a/data/fixtures/scopes/rust/statement/statement.class3.scope b/resources/fixtures/scopes/rust/statement/statement.class3.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.class3.scope rename to resources/fixtures/scopes/rust/statement/statement.class3.scope diff --git a/data/fixtures/scopes/rust/statement/statement.constant.scope b/resources/fixtures/scopes/rust/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.constant.scope rename to resources/fixtures/scopes/rust/statement/statement.constant.scope diff --git a/data/fixtures/scopes/rust/statement/statement.continue.scope b/resources/fixtures/scopes/rust/statement/statement.continue.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.continue.scope rename to resources/fixtures/scopes/rust/statement/statement.continue.scope diff --git a/data/fixtures/scopes/rust/statement/statement.enum.scope b/resources/fixtures/scopes/rust/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.enum.scope rename to resources/fixtures/scopes/rust/statement/statement.enum.scope diff --git a/data/fixtures/scopes/rust/statement/statement.field.class.scope b/resources/fixtures/scopes/rust/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.field.class.scope rename to resources/fixtures/scopes/rust/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/rust/statement/statement.foreach.scope b/resources/fixtures/scopes/rust/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.foreach.scope rename to resources/fixtures/scopes/rust/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/rust/statement/statement.function.scope b/resources/fixtures/scopes/rust/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.function.scope rename to resources/fixtures/scopes/rust/statement/statement.function.scope diff --git a/data/fixtures/scopes/rust/statement/statement.functionCall.scope b/resources/fixtures/scopes/rust/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.functionCall.scope rename to resources/fixtures/scopes/rust/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/rust/statement/statement.if.scope b/resources/fixtures/scopes/rust/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.if.scope rename to resources/fixtures/scopes/rust/statement/statement.if.scope diff --git a/data/fixtures/scopes/rust/statement/statement.import.scope b/resources/fixtures/scopes/rust/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.import.scope rename to resources/fixtures/scopes/rust/statement/statement.import.scope diff --git a/data/fixtures/scopes/rust/statement/statement.iteration.block.scope b/resources/fixtures/scopes/rust/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/rust/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/rust/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/rust/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/rust/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/rust/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/rust/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/rust/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/rust/statement/statement.iteration.class.scope b/resources/fixtures/scopes/rust/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/rust/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/rust/statement/statement.iteration.class2.scope b/resources/fixtures/scopes/rust/statement/statement.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.iteration.class2.scope rename to resources/fixtures/scopes/rust/statement/statement.iteration.class2.scope diff --git a/data/fixtures/scopes/rust/statement/statement.iteration.class3.scope b/resources/fixtures/scopes/rust/statement/statement.iteration.class3.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.iteration.class3.scope rename to resources/fixtures/scopes/rust/statement/statement.iteration.class3.scope diff --git a/data/fixtures/scopes/rust/statement/statement.iteration.document.scope b/resources/fixtures/scopes/rust/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/rust/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/rust/statement/statement.method.scope b/resources/fixtures/scopes/rust/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.method.scope rename to resources/fixtures/scopes/rust/statement/statement.method.scope diff --git a/data/fixtures/scopes/rust/statement/statement.namespace.scope b/resources/fixtures/scopes/rust/statement/statement.namespace.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.namespace.scope rename to resources/fixtures/scopes/rust/statement/statement.namespace.scope diff --git a/data/fixtures/scopes/rust/statement/statement.package.scope b/resources/fixtures/scopes/rust/statement/statement.package.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.package.scope rename to resources/fixtures/scopes/rust/statement/statement.package.scope diff --git a/data/fixtures/scopes/rust/statement/statement.return.scope b/resources/fixtures/scopes/rust/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.return.scope rename to resources/fixtures/scopes/rust/statement/statement.return.scope diff --git a/data/fixtures/scopes/rust/statement/statement.switch.scope b/resources/fixtures/scopes/rust/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.switch.scope rename to resources/fixtures/scopes/rust/statement/statement.switch.scope diff --git a/data/fixtures/scopes/rust/statement/statement.typeAlias.scope b/resources/fixtures/scopes/rust/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/rust/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/rust/statement/statement.update.scope b/resources/fixtures/scopes/rust/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.update.scope rename to resources/fixtures/scopes/rust/statement/statement.update.scope diff --git a/data/fixtures/scopes/rust/statement/statement.update2.scope b/resources/fixtures/scopes/rust/statement/statement.update2.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.update2.scope rename to resources/fixtures/scopes/rust/statement/statement.update2.scope diff --git a/data/fixtures/scopes/rust/statement/statement.variable.destructuring.scope b/resources/fixtures/scopes/rust/statement/statement.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.variable.destructuring.scope rename to resources/fixtures/scopes/rust/statement/statement.variable.destructuring.scope diff --git a/data/fixtures/scopes/rust/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/rust/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/rust/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/rust/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/rust/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/rust/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/rust/statement/statement.while.scope b/resources/fixtures/scopes/rust/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/rust/statement/statement.while.scope rename to resources/fixtures/scopes/rust/statement/statement.while.scope diff --git a/data/fixtures/scopes/rust/string.multiLine.scope b/resources/fixtures/scopes/rust/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/string.multiLine.scope rename to resources/fixtures/scopes/rust/string.multiLine.scope diff --git a/data/fixtures/scopes/rust/string.singleLine.scope b/resources/fixtures/scopes/rust/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/string.singleLine.scope rename to resources/fixtures/scopes/rust/string.singleLine.scope diff --git a/data/fixtures/scopes/rust/string.singleLine2.scope b/resources/fixtures/scopes/rust/string.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/rust/string.singleLine2.scope rename to resources/fixtures/scopes/rust/string.singleLine2.scope diff --git a/data/fixtures/scopes/rust/string.singleLine3.scope b/resources/fixtures/scopes/rust/string.singleLine3.scope similarity index 100% rename from data/fixtures/scopes/rust/string.singleLine3.scope rename to resources/fixtures/scopes/rust/string.singleLine3.scope diff --git a/data/fixtures/scopes/rust/textFragment.comment.block.scope b/resources/fixtures/scopes/rust/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/rust/textFragment.comment.block.scope rename to resources/fixtures/scopes/rust/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/rust/textFragment.comment.line.scope b/resources/fixtures/scopes/rust/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/rust/textFragment.comment.line.scope rename to resources/fixtures/scopes/rust/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/rust/textFragment.string.multiLine.scope b/resources/fixtures/scopes/rust/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/rust/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/rust/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/rust/textFragment.string.singleLine.scope b/resources/fixtures/scopes/rust/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/rust/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/rust/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/rust/textFragment.string.singleLine2.scope b/resources/fixtures/scopes/rust/textFragment.string.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/rust/textFragment.string.singleLine2.scope rename to resources/fixtures/scopes/rust/textFragment.string.singleLine2.scope diff --git a/data/fixtures/scopes/rust/textFragment.string.singleLine3.scope b/resources/fixtures/scopes/rust/textFragment.string.singleLine3.scope similarity index 100% rename from data/fixtures/scopes/rust/textFragment.string.singleLine3.scope rename to resources/fixtures/scopes/rust/textFragment.string.singleLine3.scope diff --git a/data/fixtures/scopes/rust/type/type.alias.scope b/resources/fixtures/scopes/rust/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.alias.scope rename to resources/fixtures/scopes/rust/type/type.alias.scope diff --git a/data/fixtures/scopes/rust/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/rust/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/rust/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/rust/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/rust/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/rust/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/rust/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/rust/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/rust/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/rust/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/rust/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/rust/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/rust/type/type.argument.formal.method.scope b/resources/fixtures/scopes/rust/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/rust/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/rust/type/type.argument.formal.scope b/resources/fixtures/scopes/rust/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.argument.formal.scope rename to resources/fixtures/scopes/rust/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/rust/type/type.cast.scope b/resources/fixtures/scopes/rust/type/type.cast.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.cast.scope rename to resources/fixtures/scopes/rust/type/type.cast.scope diff --git a/data/fixtures/scopes/rust/type/type.class.scope b/resources/fixtures/scopes/rust/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.class.scope rename to resources/fixtures/scopes/rust/type/type.class.scope diff --git a/data/fixtures/scopes/rust/type/type.class2.scope b/resources/fixtures/scopes/rust/type/type.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.class2.scope rename to resources/fixtures/scopes/rust/type/type.class2.scope diff --git a/data/fixtures/scopes/rust/type/type.class3.scope b/resources/fixtures/scopes/rust/type/type.class3.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.class3.scope rename to resources/fixtures/scopes/rust/type/type.class3.scope diff --git a/data/fixtures/scopes/rust/type/type.class4.scope b/resources/fixtures/scopes/rust/type/type.class4.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.class4.scope rename to resources/fixtures/scopes/rust/type/type.class4.scope diff --git a/data/fixtures/scopes/rust/type/type.constant.scope b/resources/fixtures/scopes/rust/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.constant.scope rename to resources/fixtures/scopes/rust/type/type.constant.scope diff --git a/data/fixtures/scopes/rust/type/type.enum.scope b/resources/fixtures/scopes/rust/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.enum.scope rename to resources/fixtures/scopes/rust/type/type.enum.scope diff --git a/data/fixtures/scopes/rust/type/type.field.class.scope b/resources/fixtures/scopes/rust/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.field.class.scope rename to resources/fixtures/scopes/rust/type/type.field.class.scope diff --git a/data/fixtures/scopes/rust/type/type.iteration.block.scope b/resources/fixtures/scopes/rust/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.iteration.block.scope rename to resources/fixtures/scopes/rust/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/rust/type/type.iteration.block2.scope b/resources/fixtures/scopes/rust/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.iteration.block2.scope rename to resources/fixtures/scopes/rust/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/rust/type/type.iteration.block3.scope b/resources/fixtures/scopes/rust/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.iteration.block3.scope rename to resources/fixtures/scopes/rust/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/rust/type/type.iteration.class.scope b/resources/fixtures/scopes/rust/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.iteration.class.scope rename to resources/fixtures/scopes/rust/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/rust/type/type.iteration.class2.scope b/resources/fixtures/scopes/rust/type/type.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.iteration.class2.scope rename to resources/fixtures/scopes/rust/type/type.iteration.class2.scope diff --git a/data/fixtures/scopes/rust/type/type.iteration.class3.scope b/resources/fixtures/scopes/rust/type/type.iteration.class3.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.iteration.class3.scope rename to resources/fixtures/scopes/rust/type/type.iteration.class3.scope diff --git a/data/fixtures/scopes/rust/type/type.iteration.document.scope b/resources/fixtures/scopes/rust/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.iteration.document.scope rename to resources/fixtures/scopes/rust/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/rust/type/type.return.lambda.scope b/resources/fixtures/scopes/rust/type/type.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.return.lambda.scope rename to resources/fixtures/scopes/rust/type/type.return.lambda.scope diff --git a/data/fixtures/scopes/rust/type/type.return.method.scope b/resources/fixtures/scopes/rust/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.return.method.scope rename to resources/fixtures/scopes/rust/type/type.return.method.scope diff --git a/data/fixtures/scopes/rust/type/type.return.scope b/resources/fixtures/scopes/rust/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.return.scope rename to resources/fixtures/scopes/rust/type/type.return.scope diff --git a/data/fixtures/scopes/rust/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/rust/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/rust/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/rust/type/type.typeArgument.scope b/resources/fixtures/scopes/rust/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.typeArgument.scope rename to resources/fixtures/scopes/rust/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/rust/type/type.variable.initialized.scope b/resources/fixtures/scopes/rust/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.variable.initialized.scope rename to resources/fixtures/scopes/rust/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/rust/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/rust/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/rust/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/rust/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/rust/value/value.assignment.compound.scope b/resources/fixtures/scopes/rust/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.assignment.compound.scope rename to resources/fixtures/scopes/rust/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/rust/value/value.assignment.destructuring.scope b/resources/fixtures/scopes/rust/value/value.assignment.destructuring.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.assignment.destructuring.scope rename to resources/fixtures/scopes/rust/value/value.assignment.destructuring.scope diff --git a/data/fixtures/scopes/rust/value/value.assignment.scope b/resources/fixtures/scopes/rust/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.assignment.scope rename to resources/fixtures/scopes/rust/value/value.assignment.scope diff --git a/data/fixtures/scopes/rust/value/value.constant.scope b/resources/fixtures/scopes/rust/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.constant.scope rename to resources/fixtures/scopes/rust/value/value.constant.scope diff --git a/data/fixtures/scopes/rust/value/value.foreach.scope b/resources/fixtures/scopes/rust/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.foreach.scope rename to resources/fixtures/scopes/rust/value/value.foreach.scope diff --git a/data/fixtures/scopes/rust/value/value.iteration.block.scope b/resources/fixtures/scopes/rust/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.iteration.block.scope rename to resources/fixtures/scopes/rust/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/rust/value/value.iteration.block2.scope b/resources/fixtures/scopes/rust/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.iteration.block2.scope rename to resources/fixtures/scopes/rust/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/rust/value/value.iteration.block3.scope b/resources/fixtures/scopes/rust/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.iteration.block3.scope rename to resources/fixtures/scopes/rust/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/rust/value/value.iteration.class.scope b/resources/fixtures/scopes/rust/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.iteration.class.scope rename to resources/fixtures/scopes/rust/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/rust/value/value.iteration.class2.scope b/resources/fixtures/scopes/rust/value/value.iteration.class2.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.iteration.class2.scope rename to resources/fixtures/scopes/rust/value/value.iteration.class2.scope diff --git a/data/fixtures/scopes/rust/value/value.iteration.class3.scope b/resources/fixtures/scopes/rust/value/value.iteration.class3.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.iteration.class3.scope rename to resources/fixtures/scopes/rust/value/value.iteration.class3.scope diff --git a/data/fixtures/scopes/rust/value/value.iteration.document.scope b/resources/fixtures/scopes/rust/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.iteration.document.scope rename to resources/fixtures/scopes/rust/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/rust/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/rust/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/rust/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/rust/value/value.mapPair.scope b/resources/fixtures/scopes/rust/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.mapPair.scope rename to resources/fixtures/scopes/rust/value/value.mapPair.scope diff --git a/data/fixtures/scopes/rust/value/value.return.lambda.scope b/resources/fixtures/scopes/rust/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.return.lambda.scope rename to resources/fixtures/scopes/rust/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/rust/value/value.return.scope b/resources/fixtures/scopes/rust/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.return.scope rename to resources/fixtures/scopes/rust/value/value.return.scope diff --git a/data/fixtures/scopes/rust/value/value.switch.scope b/resources/fixtures/scopes/rust/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.switch.scope rename to resources/fixtures/scopes/rust/value/value.switch.scope diff --git a/data/fixtures/scopes/rust/value/value.typeAlias.scope b/resources/fixtures/scopes/rust/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.typeAlias.scope rename to resources/fixtures/scopes/rust/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/rust/value/value.variable.destructuring.scope b/resources/fixtures/scopes/rust/value/value.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.variable.destructuring.scope rename to resources/fixtures/scopes/rust/value/value.variable.destructuring.scope diff --git a/data/fixtures/scopes/rust/value/value.variable.scope b/resources/fixtures/scopes/rust/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.variable.scope rename to resources/fixtures/scopes/rust/value/value.variable.scope diff --git a/data/fixtures/scopes/rust/value/value.variable2.scope b/resources/fixtures/scopes/rust/value/value.variable2.scope similarity index 100% rename from data/fixtures/scopes/rust/value/value.variable2.scope rename to resources/fixtures/scopes/rust/value/value.variable2.scope diff --git a/data/fixtures/scopes/scala/anonymousFunction.scope b/resources/fixtures/scopes/scala/anonymousFunction.scope similarity index 100% rename from data/fixtures/scopes/scala/anonymousFunction.scope rename to resources/fixtures/scopes/scala/anonymousFunction.scope diff --git a/data/fixtures/scopes/scala/anonymousFunction2.scope b/resources/fixtures/scopes/scala/anonymousFunction2.scope similarity index 100% rename from data/fixtures/scopes/scala/anonymousFunction2.scope rename to resources/fixtures/scopes/scala/anonymousFunction2.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.constructor.iteration.scope b/resources/fixtures/scopes/scala/argument/argument.actual.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.constructor.iteration.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.constructor.iteration.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.constructor.multiLine.scope b/resources/fixtures/scopes/scala/argument/argument.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.constructor.singleLine.scope b/resources/fixtures/scopes/scala/argument/argument.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/scala/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.method.iteration.scope b/resources/fixtures/scopes/scala/argument/argument.actual.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.method.iteration.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.method.iteration.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.method.multiLine.scope b/resources/fixtures/scopes/scala/argument/argument.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.method.multiLine.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.method.singleLine.scope b/resources/fixtures/scopes/scala/argument/argument.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.method.singleLine.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.multiLine.scope b/resources/fixtures/scopes/scala/argument/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.multiLine.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/scala/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/scala/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.catch.scope b/resources/fixtures/scopes/scala/argument/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.catch.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.catch.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/scala/argument/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.constructor.multiLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.constructor.singleLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.iteration.scope b/resources/fixtures/scopes/scala/argument/argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.iteration.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.iteration.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/scala/argument/argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.lambda.multiLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.lambda.singleLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.method.iteration.scope b/resources/fixtures/scopes/scala/argument/argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.method.iteration.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.method.multiLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.method.multiLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.method.singleLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.method.singleLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.multiLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.multiLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.multiLine.scope diff --git a/data/fixtures/scopes/scala/argument/argument.formal.singleLine.scope b/resources/fixtures/scopes/scala/argument/argument.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argument/argument.formal.singleLine.scope rename to resources/fixtures/scopes/scala/argument/argument.formal.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.empty.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.empty.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.empty.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.multiLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.multiLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.multiLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.singleLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.singleLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.constructor.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.method.multiLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.method.multiLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.method.multiLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.multiLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.multiLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.multiLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.singleLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.singleLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.constructor.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.empty2.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.empty2.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.empty2.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.empty2.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.empty.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.empty.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.empty.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.empty.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.multiLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.multiLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.multiLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.singleLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.singleLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.lambda.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.method.multiLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.method.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.method.multiLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.method.multiLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.method.singleLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.method.singleLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.method.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine2.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine2.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine2.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.multiLine2.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine.scope diff --git a/data/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine2.scope b/resources/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine2.scope rename to resources/fixtures/scopes/scala/argumentList/argumentList.formal.singleLine2.scope diff --git a/data/fixtures/scopes/scala/branch/branch.if.elif.else.scope b/resources/fixtures/scopes/scala/branch/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.if.elif.else.scope rename to resources/fixtures/scopes/scala/branch/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/scala/branch/branch.if.else.scope b/resources/fixtures/scopes/scala/branch/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.if.else.scope rename to resources/fixtures/scopes/scala/branch/branch.if.else.scope diff --git a/data/fixtures/scopes/scala/branch/branch.if.iteration.scope b/resources/fixtures/scopes/scala/branch/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.if.iteration.scope rename to resources/fixtures/scopes/scala/branch/branch.if.iteration.scope diff --git a/data/fixtures/scopes/scala/branch/branch.if.scope b/resources/fixtures/scopes/scala/branch/branch.if.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.if.scope rename to resources/fixtures/scopes/scala/branch/branch.if.scope diff --git a/data/fixtures/scopes/scala/branch/branch.switchCase.iteration.scope b/resources/fixtures/scopes/scala/branch/branch.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.switchCase.iteration.scope rename to resources/fixtures/scopes/scala/branch/branch.switchCase.iteration.scope diff --git a/data/fixtures/scopes/scala/branch/branch.switchCase.scope b/resources/fixtures/scopes/scala/branch/branch.switchCase.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.switchCase.scope rename to resources/fixtures/scopes/scala/branch/branch.switchCase.scope diff --git a/data/fixtures/scopes/scala/branch/branch.switchCase2.scope b/resources/fixtures/scopes/scala/branch/branch.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.switchCase2.scope rename to resources/fixtures/scopes/scala/branch/branch.switchCase2.scope diff --git a/data/fixtures/scopes/scala/branch/branch.try.iteration.scope b/resources/fixtures/scopes/scala/branch/branch.try.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.try.iteration.scope rename to resources/fixtures/scopes/scala/branch/branch.try.iteration.scope diff --git a/data/fixtures/scopes/scala/branch/branch.try.scope b/resources/fixtures/scopes/scala/branch/branch.try.scope similarity index 100% rename from data/fixtures/scopes/scala/branch/branch.try.scope rename to resources/fixtures/scopes/scala/branch/branch.try.scope diff --git a/data/fixtures/scopes/scala/class.iteration.class.scope b/resources/fixtures/scopes/scala/class.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/scala/class.iteration.class.scope rename to resources/fixtures/scopes/scala/class.iteration.class.scope diff --git a/data/fixtures/scopes/scala/class.iteration.document.scope b/resources/fixtures/scopes/scala/class.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scala/class.iteration.document.scope rename to resources/fixtures/scopes/scala/class.iteration.document.scope diff --git a/data/fixtures/scopes/scala/class.scope b/resources/fixtures/scopes/scala/class.scope similarity index 100% rename from data/fixtures/scopes/scala/class.scope rename to resources/fixtures/scopes/scala/class.scope diff --git a/data/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.singleLine.scope b/resources/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.singleLine.scope rename to resources/fixtures/scopes/scala/collectionItem/collectionItem.unenclosed.singleLine.scope diff --git a/data/fixtures/scopes/scala/comment.block.scope b/resources/fixtures/scopes/scala/comment.block.scope similarity index 100% rename from data/fixtures/scopes/scala/comment.block.scope rename to resources/fixtures/scopes/scala/comment.block.scope diff --git a/data/fixtures/scopes/scala/comment.line.scope b/resources/fixtures/scopes/scala/comment.line.scope similarity index 100% rename from data/fixtures/scopes/scala/comment.line.scope rename to resources/fixtures/scopes/scala/comment.line.scope diff --git a/data/fixtures/scopes/scala/condition/condition.doWhile.scope b/resources/fixtures/scopes/scala/condition/condition.doWhile.scope similarity index 100% rename from data/fixtures/scopes/scala/condition/condition.doWhile.scope rename to resources/fixtures/scopes/scala/condition/condition.doWhile.scope diff --git a/data/fixtures/scopes/scala/condition/condition.if.scope b/resources/fixtures/scopes/scala/condition/condition.if.scope similarity index 100% rename from data/fixtures/scopes/scala/condition/condition.if.scope rename to resources/fixtures/scopes/scala/condition/condition.if.scope diff --git a/data/fixtures/scopes/scala/condition/condition.switchCase.iteration.scope b/resources/fixtures/scopes/scala/condition/condition.switchCase.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/condition/condition.switchCase.iteration.scope rename to resources/fixtures/scopes/scala/condition/condition.switchCase.iteration.scope diff --git a/data/fixtures/scopes/scala/condition/condition.switchCase.scope b/resources/fixtures/scopes/scala/condition/condition.switchCase.scope similarity index 100% rename from data/fixtures/scopes/scala/condition/condition.switchCase.scope rename to resources/fixtures/scopes/scala/condition/condition.switchCase.scope diff --git a/data/fixtures/scopes/scala/condition/condition.switchCase2.scope b/resources/fixtures/scopes/scala/condition/condition.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/scala/condition/condition.switchCase2.scope rename to resources/fixtures/scopes/scala/condition/condition.switchCase2.scope diff --git a/data/fixtures/scopes/scala/condition/condition.while.scope b/resources/fixtures/scopes/scala/condition/condition.while.scope similarity index 100% rename from data/fixtures/scopes/scala/condition/condition.while.scope rename to resources/fixtures/scopes/scala/condition/condition.while.scope diff --git a/data/fixtures/scopes/scala/disqualifyDelimiter.scope b/resources/fixtures/scopes/scala/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/scala/disqualifyDelimiter.scope rename to resources/fixtures/scopes/scala/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/scala/functionCall.chain.scope b/resources/fixtures/scopes/scala/functionCall.chain.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCall.chain.scope rename to resources/fixtures/scopes/scala/functionCall.chain.scope diff --git a/data/fixtures/scopes/scala/functionCall.constructor.scope b/resources/fixtures/scopes/scala/functionCall.constructor.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCall.constructor.scope rename to resources/fixtures/scopes/scala/functionCall.constructor.scope diff --git a/data/fixtures/scopes/scala/functionCall.generic.scope b/resources/fixtures/scopes/scala/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCall.generic.scope rename to resources/fixtures/scopes/scala/functionCall.generic.scope diff --git a/data/fixtures/scopes/scala/functionCall.method.scope b/resources/fixtures/scopes/scala/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCall.method.scope rename to resources/fixtures/scopes/scala/functionCall.method.scope diff --git a/data/fixtures/scopes/scala/functionCall.scope b/resources/fixtures/scopes/scala/functionCall.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCall.scope rename to resources/fixtures/scopes/scala/functionCall.scope diff --git a/data/fixtures/scopes/scala/functionCallee.chain.scope b/resources/fixtures/scopes/scala/functionCallee.chain.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCallee.chain.scope rename to resources/fixtures/scopes/scala/functionCallee.chain.scope diff --git a/data/fixtures/scopes/scala/functionCallee.constructor.scope b/resources/fixtures/scopes/scala/functionCallee.constructor.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCallee.constructor.scope rename to resources/fixtures/scopes/scala/functionCallee.constructor.scope diff --git a/data/fixtures/scopes/scala/functionCallee.generic.scope b/resources/fixtures/scopes/scala/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCallee.generic.scope rename to resources/fixtures/scopes/scala/functionCallee.generic.scope diff --git a/data/fixtures/scopes/scala/functionCallee.method.scope b/resources/fixtures/scopes/scala/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCallee.method.scope rename to resources/fixtures/scopes/scala/functionCallee.method.scope diff --git a/data/fixtures/scopes/scala/functionCallee.scope b/resources/fixtures/scopes/scala/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/scala/functionCallee.scope rename to resources/fixtures/scopes/scala/functionCallee.scope diff --git a/data/fixtures/scopes/scala/ifStatement.scope b/resources/fixtures/scopes/scala/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/scala/ifStatement.scope rename to resources/fixtures/scopes/scala/ifStatement.scope diff --git a/data/fixtures/scopes/scala/interior/interior.class.scope b/resources/fixtures/scopes/scala/interior/interior.class.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.class.scope rename to resources/fixtures/scopes/scala/interior/interior.class.scope diff --git a/data/fixtures/scopes/scala/interior/interior.doWhile.scope b/resources/fixtures/scopes/scala/interior/interior.doWhile.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.doWhile.scope rename to resources/fixtures/scopes/scala/interior/interior.doWhile.scope diff --git a/data/fixtures/scopes/scala/interior/interior.enum.scope b/resources/fixtures/scopes/scala/interior/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.enum.scope rename to resources/fixtures/scopes/scala/interior/interior.enum.scope diff --git a/data/fixtures/scopes/scala/interior/interior.foreach.scope b/resources/fixtures/scopes/scala/interior/interior.foreach.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.foreach.scope rename to resources/fixtures/scopes/scala/interior/interior.foreach.scope diff --git a/data/fixtures/scopes/scala/interior/interior.function.scope b/resources/fixtures/scopes/scala/interior/interior.function.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.function.scope rename to resources/fixtures/scopes/scala/interior/interior.function.scope diff --git a/data/fixtures/scopes/scala/interior/interior.if.scope b/resources/fixtures/scopes/scala/interior/interior.if.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.if.scope rename to resources/fixtures/scopes/scala/interior/interior.if.scope diff --git a/data/fixtures/scopes/scala/interior/interior.interface.scope b/resources/fixtures/scopes/scala/interior/interior.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.interface.scope rename to resources/fixtures/scopes/scala/interior/interior.interface.scope diff --git a/data/fixtures/scopes/scala/interior/interior.lambda.scope b/resources/fixtures/scopes/scala/interior/interior.lambda.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.lambda.scope rename to resources/fixtures/scopes/scala/interior/interior.lambda.scope diff --git a/data/fixtures/scopes/scala/interior/interior.method.scope b/resources/fixtures/scopes/scala/interior/interior.method.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.method.scope rename to resources/fixtures/scopes/scala/interior/interior.method.scope diff --git a/data/fixtures/scopes/scala/interior/interior.namespace.scope b/resources/fixtures/scopes/scala/interior/interior.namespace.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.namespace.scope rename to resources/fixtures/scopes/scala/interior/interior.namespace.scope diff --git a/data/fixtures/scopes/scala/interior/interior.switch.scope b/resources/fixtures/scopes/scala/interior/interior.switch.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.switch.scope rename to resources/fixtures/scopes/scala/interior/interior.switch.scope diff --git a/data/fixtures/scopes/scala/interior/interior.switchCase.scope b/resources/fixtures/scopes/scala/interior/interior.switchCase.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.switchCase.scope rename to resources/fixtures/scopes/scala/interior/interior.switchCase.scope diff --git a/data/fixtures/scopes/scala/interior/interior.switchCase2.scope b/resources/fixtures/scopes/scala/interior/interior.switchCase2.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.switchCase2.scope rename to resources/fixtures/scopes/scala/interior/interior.switchCase2.scope diff --git a/data/fixtures/scopes/scala/interior/interior.try.scope b/resources/fixtures/scopes/scala/interior/interior.try.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.try.scope rename to resources/fixtures/scopes/scala/interior/interior.try.scope diff --git a/data/fixtures/scopes/scala/interior/interior.while.scope b/resources/fixtures/scopes/scala/interior/interior.while.scope similarity index 100% rename from data/fixtures/scopes/scala/interior/interior.while.scope rename to resources/fixtures/scopes/scala/interior/interior.while.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.actual.iteration.scope b/resources/fixtures/scopes/scala/name/name.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.actual.iteration.scope rename to resources/fixtures/scopes/scala/name/name.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.actual.scope b/resources/fixtures/scopes/scala/name/name.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.actual.scope rename to resources/fixtures/scopes/scala/name/name.argument.actual.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.catch.scope b/resources/fixtures/scopes/scala/name/name.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.catch.scope rename to resources/fixtures/scopes/scala/name/name.argument.catch.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.constructor.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.constructor.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.iteration.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.lambda.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.lambda.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.method.iteration.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.method.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.method.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.method.scope diff --git a/data/fixtures/scopes/scala/name/name.argument.formal.scope b/resources/fixtures/scopes/scala/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.argument.formal.scope rename to resources/fixtures/scopes/scala/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/scala/name/name.assignment.compound.scope b/resources/fixtures/scopes/scala/name/name.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.assignment.compound.scope rename to resources/fixtures/scopes/scala/name/name.assignment.compound.scope diff --git a/data/fixtures/scopes/scala/name/name.assignment.scope b/resources/fixtures/scopes/scala/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.assignment.scope rename to resources/fixtures/scopes/scala/name/name.assignment.scope diff --git a/data/fixtures/scopes/scala/name/name.class.scope b/resources/fixtures/scopes/scala/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.class.scope rename to resources/fixtures/scopes/scala/name/name.class.scope diff --git a/data/fixtures/scopes/scala/name/name.constant.scope b/resources/fixtures/scopes/scala/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.constant.scope rename to resources/fixtures/scopes/scala/name/name.constant.scope diff --git a/data/fixtures/scopes/scala/name/name.enum.scope b/resources/fixtures/scopes/scala/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.enum.scope rename to resources/fixtures/scopes/scala/name/name.enum.scope diff --git a/data/fixtures/scopes/scala/name/name.field.class.scope b/resources/fixtures/scopes/scala/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.field.class.scope rename to resources/fixtures/scopes/scala/name/name.field.class.scope diff --git a/data/fixtures/scopes/scala/name/name.field.enum.scope b/resources/fixtures/scopes/scala/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.field.enum.scope rename to resources/fixtures/scopes/scala/name/name.field.enum.scope diff --git a/data/fixtures/scopes/scala/name/name.field.interface.scope b/resources/fixtures/scopes/scala/name/name.field.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.field.interface.scope rename to resources/fixtures/scopes/scala/name/name.field.interface.scope diff --git a/data/fixtures/scopes/scala/name/name.foreach.scope b/resources/fixtures/scopes/scala/name/name.foreach.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.foreach.scope rename to resources/fixtures/scopes/scala/name/name.foreach.scope diff --git a/data/fixtures/scopes/scala/name/name.foreach2.scope b/resources/fixtures/scopes/scala/name/name.foreach2.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.foreach2.scope rename to resources/fixtures/scopes/scala/name/name.foreach2.scope diff --git a/data/fixtures/scopes/scala/name/name.function.scope b/resources/fixtures/scopes/scala/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.function.scope rename to resources/fixtures/scopes/scala/name/name.function.scope diff --git a/data/fixtures/scopes/scala/name/name.interface.scope b/resources/fixtures/scopes/scala/name/name.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.interface.scope rename to resources/fixtures/scopes/scala/name/name.interface.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.block.scope b/resources/fixtures/scopes/scala/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.block.scope rename to resources/fixtures/scopes/scala/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.block2.scope b/resources/fixtures/scopes/scala/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.block2.scope rename to resources/fixtures/scopes/scala/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.block3.scope b/resources/fixtures/scopes/scala/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.block3.scope rename to resources/fixtures/scopes/scala/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.block4.scope b/resources/fixtures/scopes/scala/name/name.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.block4.scope rename to resources/fixtures/scopes/scala/name/name.iteration.block4.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.class.scope b/resources/fixtures/scopes/scala/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.class.scope rename to resources/fixtures/scopes/scala/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.document.scope b/resources/fixtures/scopes/scala/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.document.scope rename to resources/fixtures/scopes/scala/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.enum.scope b/resources/fixtures/scopes/scala/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.enum.scope rename to resources/fixtures/scopes/scala/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/scala/name/name.iteration.interface.scope b/resources/fixtures/scopes/scala/name/name.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.iteration.interface.scope rename to resources/fixtures/scopes/scala/name/name.iteration.interface.scope diff --git a/data/fixtures/scopes/scala/name/name.method.interface.scope b/resources/fixtures/scopes/scala/name/name.method.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.method.interface.scope rename to resources/fixtures/scopes/scala/name/name.method.interface.scope diff --git a/data/fixtures/scopes/scala/name/name.method.scope b/resources/fixtures/scopes/scala/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.method.scope rename to resources/fixtures/scopes/scala/name/name.method.scope diff --git a/data/fixtures/scopes/scala/name/name.namespace.scope b/resources/fixtures/scopes/scala/name/name.namespace.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.namespace.scope rename to resources/fixtures/scopes/scala/name/name.namespace.scope diff --git a/data/fixtures/scopes/scala/name/name.typeAlias.scope b/resources/fixtures/scopes/scala/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.typeAlias.scope rename to resources/fixtures/scopes/scala/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/scala/name/name.variable.destructuring.scope b/resources/fixtures/scopes/scala/name/name.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.variable.destructuring.scope rename to resources/fixtures/scopes/scala/name/name.variable.destructuring.scope diff --git a/data/fixtures/scopes/scala/name/name.variable.initialized.scope b/resources/fixtures/scopes/scala/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.variable.initialized.scope rename to resources/fixtures/scopes/scala/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/scala/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/scala/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/scala/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/scala/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/scala/namedFunction.iteration.class.scope b/resources/fixtures/scopes/scala/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/scala/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/scala/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/scala/namedFunction.iteration.document.scope b/resources/fixtures/scopes/scala/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scala/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/scala/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/scala/namedFunction.method.scope b/resources/fixtures/scopes/scala/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/scala/namedFunction.method.scope rename to resources/fixtures/scopes/scala/namedFunction.method.scope diff --git a/data/fixtures/scopes/scala/namedFunction.scope b/resources/fixtures/scopes/scala/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/scala/namedFunction.scope rename to resources/fixtures/scopes/scala/namedFunction.scope diff --git a/data/fixtures/scopes/scala/statement/statement.assignment.compound.scope b/resources/fixtures/scopes/scala/statement/statement.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.assignment.compound.scope rename to resources/fixtures/scopes/scala/statement/statement.assignment.compound.scope diff --git a/data/fixtures/scopes/scala/statement/statement.assignment.scope b/resources/fixtures/scopes/scala/statement/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.assignment.scope rename to resources/fixtures/scopes/scala/statement/statement.assignment.scope diff --git a/data/fixtures/scopes/scala/statement/statement.class.scope b/resources/fixtures/scopes/scala/statement/statement.class.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.class.scope rename to resources/fixtures/scopes/scala/statement/statement.class.scope diff --git a/data/fixtures/scopes/scala/statement/statement.constant.scope b/resources/fixtures/scopes/scala/statement/statement.constant.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.constant.scope rename to resources/fixtures/scopes/scala/statement/statement.constant.scope diff --git a/data/fixtures/scopes/scala/statement/statement.doWhile.scope b/resources/fixtures/scopes/scala/statement/statement.doWhile.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.doWhile.scope rename to resources/fixtures/scopes/scala/statement/statement.doWhile.scope diff --git a/data/fixtures/scopes/scala/statement/statement.enum.scope b/resources/fixtures/scopes/scala/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.enum.scope rename to resources/fixtures/scopes/scala/statement/statement.enum.scope diff --git a/data/fixtures/scopes/scala/statement/statement.field.class.scope b/resources/fixtures/scopes/scala/statement/statement.field.class.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.field.class.scope rename to resources/fixtures/scopes/scala/statement/statement.field.class.scope diff --git a/data/fixtures/scopes/scala/statement/statement.field.interface.scope b/resources/fixtures/scopes/scala/statement/statement.field.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.field.interface.scope rename to resources/fixtures/scopes/scala/statement/statement.field.interface.scope diff --git a/data/fixtures/scopes/scala/statement/statement.foreach.scope b/resources/fixtures/scopes/scala/statement/statement.foreach.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.foreach.scope rename to resources/fixtures/scopes/scala/statement/statement.foreach.scope diff --git a/data/fixtures/scopes/scala/statement/statement.function.scope b/resources/fixtures/scopes/scala/statement/statement.function.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.function.scope rename to resources/fixtures/scopes/scala/statement/statement.function.scope diff --git a/data/fixtures/scopes/scala/statement/statement.functionCall.scope b/resources/fixtures/scopes/scala/statement/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.functionCall.scope rename to resources/fixtures/scopes/scala/statement/statement.functionCall.scope diff --git a/data/fixtures/scopes/scala/statement/statement.if.scope b/resources/fixtures/scopes/scala/statement/statement.if.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.if.scope rename to resources/fixtures/scopes/scala/statement/statement.if.scope diff --git a/data/fixtures/scopes/scala/statement/statement.import.scope b/resources/fixtures/scopes/scala/statement/statement.import.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.import.scope rename to resources/fixtures/scopes/scala/statement/statement.import.scope diff --git a/data/fixtures/scopes/scala/statement/statement.interface.scope b/resources/fixtures/scopes/scala/statement/statement.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.interface.scope rename to resources/fixtures/scopes/scala/statement/statement.interface.scope diff --git a/data/fixtures/scopes/scala/statement/statement.iteration.block.scope b/resources/fixtures/scopes/scala/statement/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.iteration.block.scope rename to resources/fixtures/scopes/scala/statement/statement.iteration.block.scope diff --git a/data/fixtures/scopes/scala/statement/statement.iteration.block2.scope b/resources/fixtures/scopes/scala/statement/statement.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.iteration.block2.scope rename to resources/fixtures/scopes/scala/statement/statement.iteration.block2.scope diff --git a/data/fixtures/scopes/scala/statement/statement.iteration.block3.scope b/resources/fixtures/scopes/scala/statement/statement.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.iteration.block3.scope rename to resources/fixtures/scopes/scala/statement/statement.iteration.block3.scope diff --git a/data/fixtures/scopes/scala/statement/statement.iteration.block4.scope b/resources/fixtures/scopes/scala/statement/statement.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.iteration.block4.scope rename to resources/fixtures/scopes/scala/statement/statement.iteration.block4.scope diff --git a/data/fixtures/scopes/scala/statement/statement.iteration.class.scope b/resources/fixtures/scopes/scala/statement/statement.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.iteration.class.scope rename to resources/fixtures/scopes/scala/statement/statement.iteration.class.scope diff --git a/data/fixtures/scopes/scala/statement/statement.iteration.document.scope b/resources/fixtures/scopes/scala/statement/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.iteration.document.scope rename to resources/fixtures/scopes/scala/statement/statement.iteration.document.scope diff --git a/data/fixtures/scopes/scala/statement/statement.iteration.interface.scope b/resources/fixtures/scopes/scala/statement/statement.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.iteration.interface.scope rename to resources/fixtures/scopes/scala/statement/statement.iteration.interface.scope diff --git a/data/fixtures/scopes/scala/statement/statement.method.interface.scope b/resources/fixtures/scopes/scala/statement/statement.method.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.method.interface.scope rename to resources/fixtures/scopes/scala/statement/statement.method.interface.scope diff --git a/data/fixtures/scopes/scala/statement/statement.method.scope b/resources/fixtures/scopes/scala/statement/statement.method.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.method.scope rename to resources/fixtures/scopes/scala/statement/statement.method.scope diff --git a/data/fixtures/scopes/scala/statement/statement.namespace.scope b/resources/fixtures/scopes/scala/statement/statement.namespace.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.namespace.scope rename to resources/fixtures/scopes/scala/statement/statement.namespace.scope diff --git a/data/fixtures/scopes/scala/statement/statement.package.scope b/resources/fixtures/scopes/scala/statement/statement.package.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.package.scope rename to resources/fixtures/scopes/scala/statement/statement.package.scope diff --git a/data/fixtures/scopes/scala/statement/statement.return.scope b/resources/fixtures/scopes/scala/statement/statement.return.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.return.scope rename to resources/fixtures/scopes/scala/statement/statement.return.scope diff --git a/data/fixtures/scopes/scala/statement/statement.switch.scope b/resources/fixtures/scopes/scala/statement/statement.switch.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.switch.scope rename to resources/fixtures/scopes/scala/statement/statement.switch.scope diff --git a/data/fixtures/scopes/scala/statement/statement.throw.scope b/resources/fixtures/scopes/scala/statement/statement.throw.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.throw.scope rename to resources/fixtures/scopes/scala/statement/statement.throw.scope diff --git a/data/fixtures/scopes/scala/statement/statement.try.scope b/resources/fixtures/scopes/scala/statement/statement.try.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.try.scope rename to resources/fixtures/scopes/scala/statement/statement.try.scope diff --git a/data/fixtures/scopes/scala/statement/statement.typeAlias.scope b/resources/fixtures/scopes/scala/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/scala/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/scala/statement/statement.update.scope b/resources/fixtures/scopes/scala/statement/statement.update.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.update.scope rename to resources/fixtures/scopes/scala/statement/statement.update.scope diff --git a/data/fixtures/scopes/scala/statement/statement.update2.scope b/resources/fixtures/scopes/scala/statement/statement.update2.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.update2.scope rename to resources/fixtures/scopes/scala/statement/statement.update2.scope diff --git a/data/fixtures/scopes/scala/statement/statement.variable.destructuring.scope b/resources/fixtures/scopes/scala/statement/statement.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.variable.destructuring.scope rename to resources/fixtures/scopes/scala/statement/statement.variable.destructuring.scope diff --git a/data/fixtures/scopes/scala/statement/statement.variable.initialized.scope b/resources/fixtures/scopes/scala/statement/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.variable.initialized.scope rename to resources/fixtures/scopes/scala/statement/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/scala/statement/statement.variable.uninitialized.scope b/resources/fixtures/scopes/scala/statement/statement.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.variable.uninitialized.scope rename to resources/fixtures/scopes/scala/statement/statement.variable.uninitialized.scope diff --git a/data/fixtures/scopes/scala/statement/statement.while.scope b/resources/fixtures/scopes/scala/statement/statement.while.scope similarity index 100% rename from data/fixtures/scopes/scala/statement/statement.while.scope rename to resources/fixtures/scopes/scala/statement/statement.while.scope diff --git a/data/fixtures/scopes/scala/string.multiLine.scope b/resources/fixtures/scopes/scala/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/string.multiLine.scope rename to resources/fixtures/scopes/scala/string.multiLine.scope diff --git a/data/fixtures/scopes/scala/string.singleLine.scope b/resources/fixtures/scopes/scala/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/string.singleLine.scope rename to resources/fixtures/scopes/scala/string.singleLine.scope diff --git a/data/fixtures/scopes/scala/textFragment.comment.block.scope b/resources/fixtures/scopes/scala/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/scala/textFragment.comment.block.scope rename to resources/fixtures/scopes/scala/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/scala/textFragment.comment.line.scope b/resources/fixtures/scopes/scala/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/scala/textFragment.comment.line.scope rename to resources/fixtures/scopes/scala/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/scala/textFragment.string.multiLine.scope b/resources/fixtures/scopes/scala/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scala/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/scala/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/scala/textFragment.string.singleLine.scope b/resources/fixtures/scopes/scala/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scala/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/scala/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/scala/type/type.alias.scope b/resources/fixtures/scopes/scala/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.alias.scope rename to resources/fixtures/scopes/scala/type/type.alias.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.catch.scope b/resources/fixtures/scopes/scala/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.catch.scope rename to resources/fixtures/scopes/scala/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.method.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/scala/type/type.argument.formal.scope b/resources/fixtures/scopes/scala/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.argument.formal.scope rename to resources/fixtures/scopes/scala/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/scala/type/type.class.scope b/resources/fixtures/scopes/scala/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.class.scope rename to resources/fixtures/scopes/scala/type/type.class.scope diff --git a/data/fixtures/scopes/scala/type/type.constant.scope b/resources/fixtures/scopes/scala/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.constant.scope rename to resources/fixtures/scopes/scala/type/type.constant.scope diff --git a/data/fixtures/scopes/scala/type/type.enum.scope b/resources/fixtures/scopes/scala/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.enum.scope rename to resources/fixtures/scopes/scala/type/type.enum.scope diff --git a/data/fixtures/scopes/scala/type/type.field.class.scope b/resources/fixtures/scopes/scala/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.field.class.scope rename to resources/fixtures/scopes/scala/type/type.field.class.scope diff --git a/data/fixtures/scopes/scala/type/type.field.interface.scope b/resources/fixtures/scopes/scala/type/type.field.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.field.interface.scope rename to resources/fixtures/scopes/scala/type/type.field.interface.scope diff --git a/data/fixtures/scopes/scala/type/type.foreach.scope b/resources/fixtures/scopes/scala/type/type.foreach.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.foreach.scope rename to resources/fixtures/scopes/scala/type/type.foreach.scope diff --git a/data/fixtures/scopes/scala/type/type.interface.scope b/resources/fixtures/scopes/scala/type/type.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.interface.scope rename to resources/fixtures/scopes/scala/type/type.interface.scope diff --git a/data/fixtures/scopes/scala/type/type.iteration.block.scope b/resources/fixtures/scopes/scala/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.iteration.block.scope rename to resources/fixtures/scopes/scala/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/scala/type/type.iteration.block2.scope b/resources/fixtures/scopes/scala/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.iteration.block2.scope rename to resources/fixtures/scopes/scala/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/scala/type/type.iteration.block3.scope b/resources/fixtures/scopes/scala/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.iteration.block3.scope rename to resources/fixtures/scopes/scala/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/scala/type/type.iteration.block4.scope b/resources/fixtures/scopes/scala/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.iteration.block4.scope rename to resources/fixtures/scopes/scala/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/scala/type/type.iteration.class.scope b/resources/fixtures/scopes/scala/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.iteration.class.scope rename to resources/fixtures/scopes/scala/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/scala/type/type.iteration.document.scope b/resources/fixtures/scopes/scala/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.iteration.document.scope rename to resources/fixtures/scopes/scala/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/scala/type/type.iteration.interface.scope b/resources/fixtures/scopes/scala/type/type.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.iteration.interface.scope rename to resources/fixtures/scopes/scala/type/type.iteration.interface.scope diff --git a/data/fixtures/scopes/scala/type/type.return.method.scope b/resources/fixtures/scopes/scala/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.return.method.scope rename to resources/fixtures/scopes/scala/type/type.return.method.scope diff --git a/data/fixtures/scopes/scala/type/type.return.scope b/resources/fixtures/scopes/scala/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.return.scope rename to resources/fixtures/scopes/scala/type/type.return.scope diff --git a/data/fixtures/scopes/scala/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/scala/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/scala/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/scala/type/type.typeArgument.scope b/resources/fixtures/scopes/scala/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.typeArgument.scope rename to resources/fixtures/scopes/scala/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/scala/type/type.variable.initialized.scope b/resources/fixtures/scopes/scala/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.variable.initialized.scope rename to resources/fixtures/scopes/scala/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/scala/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/scala/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/scala/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/scala/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.actual.iteration.scope b/resources/fixtures/scopes/scala/value/value.argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.actual.iteration.scope rename to resources/fixtures/scopes/scala/value/value.argument.actual.iteration.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.actual.scope b/resources/fixtures/scopes/scala/value/value.argument.actual.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.actual.scope rename to resources/fixtures/scopes/scala/value/value.argument.actual.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/scala/value/value.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/scala/value/value.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.formal.constructor.scope b/resources/fixtures/scopes/scala/value/value.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.formal.constructor.scope rename to resources/fixtures/scopes/scala/value/value.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.formal.iteration.scope b/resources/fixtures/scopes/scala/value/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/scala/value/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.formal.method.iteration.scope b/resources/fixtures/scopes/scala/value/value.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/scala/value/value.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.formal.method.scope b/resources/fixtures/scopes/scala/value/value.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.formal.method.scope rename to resources/fixtures/scopes/scala/value/value.argument.formal.method.scope diff --git a/data/fixtures/scopes/scala/value/value.argument.formal.scope b/resources/fixtures/scopes/scala/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.argument.formal.scope rename to resources/fixtures/scopes/scala/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/scala/value/value.assignment.compound.scope b/resources/fixtures/scopes/scala/value/value.assignment.compound.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.assignment.compound.scope rename to resources/fixtures/scopes/scala/value/value.assignment.compound.scope diff --git a/data/fixtures/scopes/scala/value/value.assignment.scope b/resources/fixtures/scopes/scala/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.assignment.scope rename to resources/fixtures/scopes/scala/value/value.assignment.scope diff --git a/data/fixtures/scopes/scala/value/value.constant.scope b/resources/fixtures/scopes/scala/value/value.constant.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.constant.scope rename to resources/fixtures/scopes/scala/value/value.constant.scope diff --git a/data/fixtures/scopes/scala/value/value.field.class.scope b/resources/fixtures/scopes/scala/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.field.class.scope rename to resources/fixtures/scopes/scala/value/value.field.class.scope diff --git a/data/fixtures/scopes/scala/value/value.field.interface.scope b/resources/fixtures/scopes/scala/value/value.field.interface.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.field.interface.scope rename to resources/fixtures/scopes/scala/value/value.field.interface.scope diff --git a/data/fixtures/scopes/scala/value/value.foreach.scope b/resources/fixtures/scopes/scala/value/value.foreach.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.foreach.scope rename to resources/fixtures/scopes/scala/value/value.foreach.scope diff --git a/data/fixtures/scopes/scala/value/value.iteration.block.scope b/resources/fixtures/scopes/scala/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.iteration.block.scope rename to resources/fixtures/scopes/scala/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/scala/value/value.iteration.block2.scope b/resources/fixtures/scopes/scala/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.iteration.block2.scope rename to resources/fixtures/scopes/scala/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/scala/value/value.iteration.block3.scope b/resources/fixtures/scopes/scala/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.iteration.block3.scope rename to resources/fixtures/scopes/scala/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/scala/value/value.iteration.block4.scope b/resources/fixtures/scopes/scala/value/value.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.iteration.block4.scope rename to resources/fixtures/scopes/scala/value/value.iteration.block4.scope diff --git a/data/fixtures/scopes/scala/value/value.iteration.class.scope b/resources/fixtures/scopes/scala/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.iteration.class.scope rename to resources/fixtures/scopes/scala/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/scala/value/value.iteration.document.scope b/resources/fixtures/scopes/scala/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.iteration.document.scope rename to resources/fixtures/scopes/scala/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/scala/value/value.return.lambda.scope b/resources/fixtures/scopes/scala/value/value.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.return.lambda.scope rename to resources/fixtures/scopes/scala/value/value.return.lambda.scope diff --git a/data/fixtures/scopes/scala/value/value.return.scope b/resources/fixtures/scopes/scala/value/value.return.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.return.scope rename to resources/fixtures/scopes/scala/value/value.return.scope diff --git a/data/fixtures/scopes/scala/value/value.switch.scope b/resources/fixtures/scopes/scala/value/value.switch.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.switch.scope rename to resources/fixtures/scopes/scala/value/value.switch.scope diff --git a/data/fixtures/scopes/scala/value/value.throw.scope b/resources/fixtures/scopes/scala/value/value.throw.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.throw.scope rename to resources/fixtures/scopes/scala/value/value.throw.scope diff --git a/data/fixtures/scopes/scala/value/value.typeAlias.scope b/resources/fixtures/scopes/scala/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.typeAlias.scope rename to resources/fixtures/scopes/scala/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/scala/value/value.variable.destructuring.scope b/resources/fixtures/scopes/scala/value/value.variable.destructuring.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.variable.destructuring.scope rename to resources/fixtures/scopes/scala/value/value.variable.destructuring.scope diff --git a/data/fixtures/scopes/scala/value/value.variable.scope b/resources/fixtures/scopes/scala/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.variable.scope rename to resources/fixtures/scopes/scala/value/value.variable.scope diff --git a/data/fixtures/scopes/scala/value/value.variable2.scope b/resources/fixtures/scopes/scala/value/value.variable2.scope similarity index 100% rename from data/fixtures/scopes/scala/value/value.variable2.scope rename to resources/fixtures/scopes/scala/value/value.variable2.scope diff --git a/data/fixtures/scopes/scm/argument.actual.iteration.scope b/resources/fixtures/scopes/scm/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/scm/argument.actual.iteration.scope rename to resources/fixtures/scopes/scm/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/scm/argument.actual.multiLine.scope b/resources/fixtures/scopes/scm/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scm/argument.actual.multiLine.scope rename to resources/fixtures/scopes/scm/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/scm/argument.actual.singleLine.scope b/resources/fixtures/scopes/scm/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scm/argument.actual.singleLine.scope rename to resources/fixtures/scopes/scm/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/scm/argumentList.actual.empty.scope b/resources/fixtures/scopes/scm/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/scm/argumentList.actual.empty.scope rename to resources/fixtures/scopes/scm/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/scm/argumentList.actual.multiLine.scope b/resources/fixtures/scopes/scm/argumentList.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scm/argumentList.actual.multiLine.scope rename to resources/fixtures/scopes/scm/argumentList.actual.multiLine.scope diff --git a/data/fixtures/scopes/scm/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/scm/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scm/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/scm/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/scm/comment.line.scope b/resources/fixtures/scopes/scm/comment.line.scope similarity index 100% rename from data/fixtures/scopes/scm/comment.line.scope rename to resources/fixtures/scopes/scm/comment.line.scope diff --git a/data/fixtures/scopes/scm/functionCall.scope b/resources/fixtures/scopes/scm/functionCall.scope similarity index 100% rename from data/fixtures/scopes/scm/functionCall.scope rename to resources/fixtures/scopes/scm/functionCall.scope diff --git a/data/fixtures/scopes/scm/functionCallee.scope b/resources/fixtures/scopes/scm/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/scm/functionCallee.scope rename to resources/fixtures/scopes/scm/functionCallee.scope diff --git a/data/fixtures/scopes/scm/list.scope b/resources/fixtures/scopes/scm/list.scope similarity index 100% rename from data/fixtures/scopes/scm/list.scope rename to resources/fixtures/scopes/scm/list.scope diff --git a/data/fixtures/scopes/scm/statement.misc.scope b/resources/fixtures/scopes/scm/statement.misc.scope similarity index 100% rename from data/fixtures/scopes/scm/statement.misc.scope rename to resources/fixtures/scopes/scm/statement.misc.scope diff --git a/data/fixtures/scopes/scm/string.singleLine.scope b/resources/fixtures/scopes/scm/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scm/string.singleLine.scope rename to resources/fixtures/scopes/scm/string.singleLine.scope diff --git a/data/fixtures/scopes/scm/textFragment.comment.line.scope b/resources/fixtures/scopes/scm/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/scm/textFragment.comment.line.scope rename to resources/fixtures/scopes/scm/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/scm/textFragment.string.singleLine.scope b/resources/fixtures/scopes/scm/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scm/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/scm/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/scss/argument.actual.iteration.scope b/resources/fixtures/scopes/scss/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/scss/argument.actual.iteration.scope rename to resources/fixtures/scopes/scss/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/scss/argument.actual.multiLine.scope b/resources/fixtures/scopes/scss/argument.actual.multiLine.scope similarity index 100% rename from data/fixtures/scopes/scss/argument.actual.multiLine.scope rename to resources/fixtures/scopes/scss/argument.actual.multiLine.scope diff --git a/data/fixtures/scopes/scss/argument.actual.singleLine.scope b/resources/fixtures/scopes/scss/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/scss/argument.actual.singleLine.scope rename to resources/fixtures/scopes/scss/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/scss/branch.if.elif.else.scope b/resources/fixtures/scopes/scss/branch.if.elif.else.scope similarity index 100% rename from data/fixtures/scopes/scss/branch.if.elif.else.scope rename to resources/fixtures/scopes/scss/branch.if.elif.else.scope diff --git a/data/fixtures/scopes/scss/branch.if.else.scope b/resources/fixtures/scopes/scss/branch.if.else.scope similarity index 100% rename from data/fixtures/scopes/scss/branch.if.else.scope rename to resources/fixtures/scopes/scss/branch.if.else.scope diff --git a/data/fixtures/scopes/scss/branch.if.iteration.scope b/resources/fixtures/scopes/scss/branch.if.iteration.scope similarity index 100% rename from data/fixtures/scopes/scss/branch.if.iteration.scope rename to resources/fixtures/scopes/scss/branch.if.iteration.scope diff --git a/data/fixtures/scopes/scss/branch.if.scope b/resources/fixtures/scopes/scss/branch.if.scope similarity index 100% rename from data/fixtures/scopes/scss/branch.if.scope rename to resources/fixtures/scopes/scss/branch.if.scope diff --git a/data/fixtures/scopes/scss/comment.line.scope b/resources/fixtures/scopes/scss/comment.line.scope similarity index 100% rename from data/fixtures/scopes/scss/comment.line.scope rename to resources/fixtures/scopes/scss/comment.line.scope diff --git a/data/fixtures/scopes/scss/condition.if.scope b/resources/fixtures/scopes/scss/condition.if.scope similarity index 100% rename from data/fixtures/scopes/scss/condition.if.scope rename to resources/fixtures/scopes/scss/condition.if.scope diff --git a/data/fixtures/scopes/scss/disqualifyDelimiter.scope b/resources/fixtures/scopes/scss/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/scss/disqualifyDelimiter.scope rename to resources/fixtures/scopes/scss/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/scss/ifStatement.scope b/resources/fixtures/scopes/scss/ifStatement.scope similarity index 100% rename from data/fixtures/scopes/scss/ifStatement.scope rename to resources/fixtures/scopes/scss/ifStatement.scope diff --git a/data/fixtures/scopes/scss/index.json b/resources/fixtures/scopes/scss/index.json similarity index 100% rename from data/fixtures/scopes/scss/index.json rename to resources/fixtures/scopes/scss/index.json diff --git a/data/fixtures/scopes/scss/interior.function.scope b/resources/fixtures/scopes/scss/interior.function.scope similarity index 100% rename from data/fixtures/scopes/scss/interior.function.scope rename to resources/fixtures/scopes/scss/interior.function.scope diff --git a/data/fixtures/scopes/scss/interior.if.scope b/resources/fixtures/scopes/scss/interior.if.scope similarity index 100% rename from data/fixtures/scopes/scss/interior.if.scope rename to resources/fixtures/scopes/scss/interior.if.scope diff --git a/data/fixtures/scopes/scss/name.argument.formal.iteration.scope b/resources/fixtures/scopes/scss/name.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/scss/name.argument.formal.iteration.scope rename to resources/fixtures/scopes/scss/name.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/scss/name.argument.formal.scope b/resources/fixtures/scopes/scss/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/scss/name.argument.formal.scope rename to resources/fixtures/scopes/scss/name.argument.formal.scope diff --git a/data/fixtures/scopes/scss/name.function.scope b/resources/fixtures/scopes/scss/name.function.scope similarity index 100% rename from data/fixtures/scopes/scss/name.function.scope rename to resources/fixtures/scopes/scss/name.function.scope diff --git a/data/fixtures/scopes/scss/name.function2.scope b/resources/fixtures/scopes/scss/name.function2.scope similarity index 100% rename from data/fixtures/scopes/scss/name.function2.scope rename to resources/fixtures/scopes/scss/name.function2.scope diff --git a/data/fixtures/scopes/scss/name.iteration.block.scope b/resources/fixtures/scopes/scss/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/scss/name.iteration.block.scope rename to resources/fixtures/scopes/scss/name.iteration.block.scope diff --git a/data/fixtures/scopes/scss/name.iteration.document.scope b/resources/fixtures/scopes/scss/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scss/name.iteration.document.scope rename to resources/fixtures/scopes/scss/name.iteration.document.scope diff --git a/data/fixtures/scopes/scss/namedFunction.iteration.class.scope b/resources/fixtures/scopes/scss/namedFunction.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/scss/namedFunction.iteration.class.scope rename to resources/fixtures/scopes/scss/namedFunction.iteration.class.scope diff --git a/data/fixtures/scopes/scss/namedFunction.iteration.document.scope b/resources/fixtures/scopes/scss/namedFunction.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/scss/namedFunction.iteration.document.scope rename to resources/fixtures/scopes/scss/namedFunction.iteration.document.scope diff --git a/data/fixtures/scopes/scss/namedFunction.scope b/resources/fixtures/scopes/scss/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/scss/namedFunction.scope rename to resources/fixtures/scopes/scss/namedFunction.scope diff --git a/data/fixtures/scopes/scss/namedFunction2.scope b/resources/fixtures/scopes/scss/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/scss/namedFunction2.scope rename to resources/fixtures/scopes/scss/namedFunction2.scope diff --git a/data/fixtures/scopes/scss/textFragment.comment.line.scope b/resources/fixtures/scopes/scss/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/scss/textFragment.comment.line.scope rename to resources/fixtures/scopes/scss/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/scss/value.argument.formal.iteration.scope b/resources/fixtures/scopes/scss/value.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/scss/value.argument.formal.iteration.scope rename to resources/fixtures/scopes/scss/value.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/scss/value.argument.formal.scope b/resources/fixtures/scopes/scss/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/scss/value.argument.formal.scope rename to resources/fixtures/scopes/scss/value.argument.formal.scope diff --git a/data/fixtures/scopes/scss/value.return.scope b/resources/fixtures/scopes/scss/value.return.scope similarity index 100% rename from data/fixtures/scopes/scss/value.return.scope rename to resources/fixtures/scopes/scss/value.return.scope diff --git a/data/fixtures/scopes/talon-list/comment.line.scope b/resources/fixtures/scopes/talon-list/comment.line.scope similarity index 100% rename from data/fixtures/scopes/talon-list/comment.line.scope rename to resources/fixtures/scopes/talon-list/comment.line.scope diff --git a/data/fixtures/scopes/talon-list/key.mapPair.iteration.scope b/resources/fixtures/scopes/talon-list/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/talon-list/key.mapPair.iteration.scope rename to resources/fixtures/scopes/talon-list/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/talon-list/key.mapPair.scope b/resources/fixtures/scopes/talon-list/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/talon-list/key.mapPair.scope rename to resources/fixtures/scopes/talon-list/key.mapPair.scope diff --git a/data/fixtures/scopes/talon-list/key.mapPair2.scope b/resources/fixtures/scopes/talon-list/key.mapPair2.scope similarity index 100% rename from data/fixtures/scopes/talon-list/key.mapPair2.scope rename to resources/fixtures/scopes/talon-list/key.mapPair2.scope diff --git a/data/fixtures/scopes/talon-list/name.iteration.document.scope b/resources/fixtures/scopes/talon-list/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/talon-list/name.iteration.document.scope rename to resources/fixtures/scopes/talon-list/name.iteration.document.scope diff --git a/data/fixtures/scopes/talon-list/name.variable.initialized.scope b/resources/fixtures/scopes/talon-list/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/talon-list/name.variable.initialized.scope rename to resources/fixtures/scopes/talon-list/name.variable.initialized.scope diff --git a/data/fixtures/scopes/talon-list/name.variable.initialized2.scope b/resources/fixtures/scopes/talon-list/name.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/talon-list/name.variable.initialized2.scope rename to resources/fixtures/scopes/talon-list/name.variable.initialized2.scope diff --git a/data/fixtures/scopes/talon-list/statement.iteration.document.scope b/resources/fixtures/scopes/talon-list/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/talon-list/statement.iteration.document.scope rename to resources/fixtures/scopes/talon-list/statement.iteration.document.scope diff --git a/data/fixtures/scopes/talon-list/statement.variable.initialized.scope b/resources/fixtures/scopes/talon-list/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/talon-list/statement.variable.initialized.scope rename to resources/fixtures/scopes/talon-list/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/talon-list/statement.variable.initialized2.scope b/resources/fixtures/scopes/talon-list/statement.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/talon-list/statement.variable.initialized2.scope rename to resources/fixtures/scopes/talon-list/statement.variable.initialized2.scope diff --git a/data/fixtures/scopes/talon-list/string.singleLine.scope b/resources/fixtures/scopes/talon-list/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/talon-list/string.singleLine.scope rename to resources/fixtures/scopes/talon-list/string.singleLine.scope diff --git a/data/fixtures/scopes/talon-list/textFragment.comment.line.scope b/resources/fixtures/scopes/talon-list/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/talon-list/textFragment.comment.line.scope rename to resources/fixtures/scopes/talon-list/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/talon-list/textFragment.string.singleLine.scope b/resources/fixtures/scopes/talon-list/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/talon-list/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/talon-list/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/talon-list/value.iteration.document.scope b/resources/fixtures/scopes/talon-list/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/talon-list/value.iteration.document.scope rename to resources/fixtures/scopes/talon-list/value.iteration.document.scope diff --git a/data/fixtures/scopes/talon-list/value.mapPair.iteration.scope b/resources/fixtures/scopes/talon-list/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/talon-list/value.mapPair.iteration.scope rename to resources/fixtures/scopes/talon-list/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/talon-list/value.mapPair.scope b/resources/fixtures/scopes/talon-list/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/talon-list/value.mapPair.scope rename to resources/fixtures/scopes/talon-list/value.mapPair.scope diff --git a/data/fixtures/scopes/talon-list/value.variable.scope b/resources/fixtures/scopes/talon-list/value.variable.scope similarity index 100% rename from data/fixtures/scopes/talon-list/value.variable.scope rename to resources/fixtures/scopes/talon-list/value.variable.scope diff --git a/data/fixtures/scopes/talon-list/value.variable2.scope b/resources/fixtures/scopes/talon-list/value.variable2.scope similarity index 100% rename from data/fixtures/scopes/talon-list/value.variable2.scope rename to resources/fixtures/scopes/talon-list/value.variable2.scope diff --git a/data/fixtures/scopes/talon/argument/argument.actual.iteration.scope b/resources/fixtures/scopes/talon/argument/argument.actual.iteration.scope similarity index 100% rename from data/fixtures/scopes/talon/argument/argument.actual.iteration.scope rename to resources/fixtures/scopes/talon/argument/argument.actual.iteration.scope diff --git a/data/fixtures/scopes/talon/argument/argument.actual.iteration2.scope b/resources/fixtures/scopes/talon/argument/argument.actual.iteration2.scope similarity index 100% rename from data/fixtures/scopes/talon/argument/argument.actual.iteration2.scope rename to resources/fixtures/scopes/talon/argument/argument.actual.iteration2.scope diff --git a/data/fixtures/scopes/talon/argument/argument.actual.iteration3.scope b/resources/fixtures/scopes/talon/argument/argument.actual.iteration3.scope similarity index 100% rename from data/fixtures/scopes/talon/argument/argument.actual.iteration3.scope rename to resources/fixtures/scopes/talon/argument/argument.actual.iteration3.scope diff --git a/data/fixtures/scopes/talon/argument/argument.actual.singleLine.scope b/resources/fixtures/scopes/talon/argument/argument.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/talon/argument/argument.actual.singleLine.scope rename to resources/fixtures/scopes/talon/argument/argument.actual.singleLine.scope diff --git a/data/fixtures/scopes/talon/argument/argument.actual.singleLine2.scope b/resources/fixtures/scopes/talon/argument/argument.actual.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/talon/argument/argument.actual.singleLine2.scope rename to resources/fixtures/scopes/talon/argument/argument.actual.singleLine2.scope diff --git a/data/fixtures/scopes/talon/argument/argument.actual.singleLine3.scope b/resources/fixtures/scopes/talon/argument/argument.actual.singleLine3.scope similarity index 100% rename from data/fixtures/scopes/talon/argument/argument.actual.singleLine3.scope rename to resources/fixtures/scopes/talon/argument/argument.actual.singleLine3.scope diff --git a/data/fixtures/scopes/talon/argumentList/argumentList.actual.empty.scope b/resources/fixtures/scopes/talon/argumentList/argumentList.actual.empty.scope similarity index 100% rename from data/fixtures/scopes/talon/argumentList/argumentList.actual.empty.scope rename to resources/fixtures/scopes/talon/argumentList/argumentList.actual.empty.scope diff --git a/data/fixtures/scopes/talon/argumentList/argumentList.actual.method.empty.scope b/resources/fixtures/scopes/talon/argumentList/argumentList.actual.method.empty.scope similarity index 100% rename from data/fixtures/scopes/talon/argumentList/argumentList.actual.method.empty.scope rename to resources/fixtures/scopes/talon/argumentList/argumentList.actual.method.empty.scope diff --git a/data/fixtures/scopes/talon/argumentList/argumentList.actual.method.singleLine.scope b/resources/fixtures/scopes/talon/argumentList/argumentList.actual.method.singleLine.scope similarity index 100% rename from data/fixtures/scopes/talon/argumentList/argumentList.actual.method.singleLine.scope rename to resources/fixtures/scopes/talon/argumentList/argumentList.actual.method.singleLine.scope diff --git a/data/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine.scope b/resources/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine.scope similarity index 100% rename from data/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine.scope rename to resources/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine.scope diff --git a/data/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine2.scope b/resources/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine2.scope rename to resources/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine2.scope diff --git a/data/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine3.scope b/resources/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine3.scope similarity index 100% rename from data/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine3.scope rename to resources/fixtures/scopes/talon/argumentList/argumentList.actual.singleLine3.scope diff --git a/data/fixtures/scopes/talon/command.scope b/resources/fixtures/scopes/talon/command.scope similarity index 100% rename from data/fixtures/scopes/talon/command.scope rename to resources/fixtures/scopes/talon/command.scope diff --git a/data/fixtures/scopes/talon/command2.scope b/resources/fixtures/scopes/talon/command2.scope similarity index 100% rename from data/fixtures/scopes/talon/command2.scope rename to resources/fixtures/scopes/talon/command2.scope diff --git a/data/fixtures/scopes/talon/comment.line.scope b/resources/fixtures/scopes/talon/comment.line.scope similarity index 100% rename from data/fixtures/scopes/talon/comment.line.scope rename to resources/fixtures/scopes/talon/comment.line.scope diff --git a/data/fixtures/scopes/talon/functionCall.method.scope b/resources/fixtures/scopes/talon/functionCall.method.scope similarity index 100% rename from data/fixtures/scopes/talon/functionCall.method.scope rename to resources/fixtures/scopes/talon/functionCall.method.scope diff --git a/data/fixtures/scopes/talon/functionCall.scope b/resources/fixtures/scopes/talon/functionCall.scope similarity index 100% rename from data/fixtures/scopes/talon/functionCall.scope rename to resources/fixtures/scopes/talon/functionCall.scope diff --git a/data/fixtures/scopes/talon/functionCallee.method.scope b/resources/fixtures/scopes/talon/functionCallee.method.scope similarity index 100% rename from data/fixtures/scopes/talon/functionCallee.method.scope rename to resources/fixtures/scopes/talon/functionCallee.method.scope diff --git a/data/fixtures/scopes/talon/functionCallee.scope b/resources/fixtures/scopes/talon/functionCallee.scope similarity index 100% rename from data/fixtures/scopes/talon/functionCallee.scope rename to resources/fixtures/scopes/talon/functionCallee.scope diff --git a/data/fixtures/scopes/talon/interior.command.scope b/resources/fixtures/scopes/talon/interior.command.scope similarity index 100% rename from data/fixtures/scopes/talon/interior.command.scope rename to resources/fixtures/scopes/talon/interior.command.scope diff --git a/data/fixtures/scopes/talon/key/key.mapPair.iteration.scope b/resources/fixtures/scopes/talon/key/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/talon/key/key.mapPair.iteration.scope rename to resources/fixtures/scopes/talon/key/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/talon/key/key.mapPair.iteration2.scope b/resources/fixtures/scopes/talon/key/key.mapPair.iteration2.scope similarity index 100% rename from data/fixtures/scopes/talon/key/key.mapPair.iteration2.scope rename to resources/fixtures/scopes/talon/key/key.mapPair.iteration2.scope diff --git a/data/fixtures/scopes/talon/key/key.mapPair.iteration3.scope b/resources/fixtures/scopes/talon/key/key.mapPair.iteration3.scope similarity index 100% rename from data/fixtures/scopes/talon/key/key.mapPair.iteration3.scope rename to resources/fixtures/scopes/talon/key/key.mapPair.iteration3.scope diff --git a/data/fixtures/scopes/talon/key/key.mapPair.scope b/resources/fixtures/scopes/talon/key/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/talon/key/key.mapPair.scope rename to resources/fixtures/scopes/talon/key/key.mapPair.scope diff --git a/data/fixtures/scopes/talon/key/key.mapPair2.scope b/resources/fixtures/scopes/talon/key/key.mapPair2.scope similarity index 100% rename from data/fixtures/scopes/talon/key/key.mapPair2.scope rename to resources/fixtures/scopes/talon/key/key.mapPair2.scope diff --git a/data/fixtures/scopes/talon/name/name.assignment.scope b/resources/fixtures/scopes/talon/name/name.assignment.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.assignment.scope rename to resources/fixtures/scopes/talon/name/name.assignment.scope diff --git a/data/fixtures/scopes/talon/name/name.command.scope b/resources/fixtures/scopes/talon/name/name.command.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.command.scope rename to resources/fixtures/scopes/talon/name/name.command.scope diff --git a/data/fixtures/scopes/talon/name/name.command2.scope b/resources/fixtures/scopes/talon/name/name.command2.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.command2.scope rename to resources/fixtures/scopes/talon/name/name.command2.scope diff --git a/data/fixtures/scopes/talon/name/name.command3.scope b/resources/fixtures/scopes/talon/name/name.command3.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.command3.scope rename to resources/fixtures/scopes/talon/name/name.command3.scope diff --git a/data/fixtures/scopes/talon/name/name.iteration.block.scope b/resources/fixtures/scopes/talon/name/name.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.iteration.block.scope rename to resources/fixtures/scopes/talon/name/name.iteration.block.scope diff --git a/data/fixtures/scopes/talon/name/name.iteration.block2.scope b/resources/fixtures/scopes/talon/name/name.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.iteration.block2.scope rename to resources/fixtures/scopes/talon/name/name.iteration.block2.scope diff --git a/data/fixtures/scopes/talon/name/name.iteration.block3.scope b/resources/fixtures/scopes/talon/name/name.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.iteration.block3.scope rename to resources/fixtures/scopes/talon/name/name.iteration.block3.scope diff --git a/data/fixtures/scopes/talon/name/name.iteration.document.scope b/resources/fixtures/scopes/talon/name/name.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.iteration.document.scope rename to resources/fixtures/scopes/talon/name/name.iteration.document.scope diff --git a/data/fixtures/scopes/talon/name/name.variable.initialized.scope b/resources/fixtures/scopes/talon/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/talon/name/name.variable.initialized.scope rename to resources/fixtures/scopes/talon/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/talon/statement.assignment.scope b/resources/fixtures/scopes/talon/statement.assignment.scope similarity index 100% rename from data/fixtures/scopes/talon/statement.assignment.scope rename to resources/fixtures/scopes/talon/statement.assignment.scope diff --git a/data/fixtures/scopes/talon/statement.command.scope b/resources/fixtures/scopes/talon/statement.command.scope similarity index 100% rename from data/fixtures/scopes/talon/statement.command.scope rename to resources/fixtures/scopes/talon/statement.command.scope diff --git a/data/fixtures/scopes/talon/statement.functionCall.scope b/resources/fixtures/scopes/talon/statement.functionCall.scope similarity index 100% rename from data/fixtures/scopes/talon/statement.functionCall.scope rename to resources/fixtures/scopes/talon/statement.functionCall.scope diff --git a/data/fixtures/scopes/talon/statement.iteration.block.scope b/resources/fixtures/scopes/talon/statement.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/talon/statement.iteration.block.scope rename to resources/fixtures/scopes/talon/statement.iteration.block.scope diff --git a/data/fixtures/scopes/talon/statement.iteration.document.scope b/resources/fixtures/scopes/talon/statement.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/talon/statement.iteration.document.scope rename to resources/fixtures/scopes/talon/statement.iteration.document.scope diff --git a/data/fixtures/scopes/talon/statement.variable.initialized.scope b/resources/fixtures/scopes/talon/statement.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/talon/statement.variable.initialized.scope rename to resources/fixtures/scopes/talon/statement.variable.initialized.scope diff --git a/data/fixtures/scopes/talon/string.singleLine.scope b/resources/fixtures/scopes/talon/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/talon/string.singleLine.scope rename to resources/fixtures/scopes/talon/string.singleLine.scope diff --git a/data/fixtures/scopes/talon/string.singleLine2.scope b/resources/fixtures/scopes/talon/string.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/talon/string.singleLine2.scope rename to resources/fixtures/scopes/talon/string.singleLine2.scope diff --git a/data/fixtures/scopes/talon/textFragment.comment.line.scope b/resources/fixtures/scopes/talon/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/talon/textFragment.comment.line.scope rename to resources/fixtures/scopes/talon/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/talon/textFragment.string.singleLine.scope b/resources/fixtures/scopes/talon/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/talon/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/talon/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/talon/textFragment.string.singleLine2.scope b/resources/fixtures/scopes/talon/textFragment.string.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/talon/textFragment.string.singleLine2.scope rename to resources/fixtures/scopes/talon/textFragment.string.singleLine2.scope diff --git a/data/fixtures/scopes/talon/value/value.assignment.scope b/resources/fixtures/scopes/talon/value/value.assignment.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.assignment.scope rename to resources/fixtures/scopes/talon/value/value.assignment.scope diff --git a/data/fixtures/scopes/talon/value/value.command.scope b/resources/fixtures/scopes/talon/value/value.command.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.command.scope rename to resources/fixtures/scopes/talon/value/value.command.scope diff --git a/data/fixtures/scopes/talon/value/value.iteration.block.scope b/resources/fixtures/scopes/talon/value/value.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.iteration.block.scope rename to resources/fixtures/scopes/talon/value/value.iteration.block.scope diff --git a/data/fixtures/scopes/talon/value/value.iteration.block2.scope b/resources/fixtures/scopes/talon/value/value.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.iteration.block2.scope rename to resources/fixtures/scopes/talon/value/value.iteration.block2.scope diff --git a/data/fixtures/scopes/talon/value/value.iteration.block3.scope b/resources/fixtures/scopes/talon/value/value.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.iteration.block3.scope rename to resources/fixtures/scopes/talon/value/value.iteration.block3.scope diff --git a/data/fixtures/scopes/talon/value/value.iteration.document.scope b/resources/fixtures/scopes/talon/value/value.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.iteration.document.scope rename to resources/fixtures/scopes/talon/value/value.iteration.document.scope diff --git a/data/fixtures/scopes/talon/value/value.mapPair.iteration.scope b/resources/fixtures/scopes/talon/value/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.mapPair.iteration.scope rename to resources/fixtures/scopes/talon/value/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/talon/value/value.mapPair.iteration2.scope b/resources/fixtures/scopes/talon/value/value.mapPair.iteration2.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.mapPair.iteration2.scope rename to resources/fixtures/scopes/talon/value/value.mapPair.iteration2.scope diff --git a/data/fixtures/scopes/talon/value/value.mapPair.iteration3.scope b/resources/fixtures/scopes/talon/value/value.mapPair.iteration3.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.mapPair.iteration3.scope rename to resources/fixtures/scopes/talon/value/value.mapPair.iteration3.scope diff --git a/data/fixtures/scopes/talon/value/value.mapPair.scope b/resources/fixtures/scopes/talon/value/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.mapPair.scope rename to resources/fixtures/scopes/talon/value/value.mapPair.scope diff --git a/data/fixtures/scopes/talon/value/value.mapPair2.scope b/resources/fixtures/scopes/talon/value/value.mapPair2.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.mapPair2.scope rename to resources/fixtures/scopes/talon/value/value.mapPair2.scope diff --git a/data/fixtures/scopes/talon/value/value.variable.scope b/resources/fixtures/scopes/talon/value/value.variable.scope similarity index 100% rename from data/fixtures/scopes/talon/value/value.variable.scope rename to resources/fixtures/scopes/talon/value/value.variable.scope diff --git a/data/fixtures/scopes/typescript.core/argument.formal.catch.scope b/resources/fixtures/scopes/typescript.core/argument.formal.catch.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/argument.formal.catch.scope rename to resources/fixtures/scopes/typescript.core/argument.formal.catch.scope diff --git a/data/fixtures/scopes/typescript.core/argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/typescript.core/argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/typescript.core/argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.constructor.empty.scope b/resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.constructor.empty.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.constructor.empty.scope rename to resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.constructor.empty.scope diff --git a/data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty.scope b/resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty.scope rename to resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty.scope diff --git a/data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty2.scope b/resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty2.scope rename to resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.empty2.scope diff --git a/data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty.scope b/resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty.scope rename to resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty.scope diff --git a/data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty2.scope b/resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty2.scope rename to resources/fixtures/scopes/typescript.core/argumentList/argumentList.formal.method.empty2.scope diff --git a/data/fixtures/scopes/typescript.core/class.scope b/resources/fixtures/scopes/typescript.core/class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/class.scope rename to resources/fixtures/scopes/typescript.core/class.scope diff --git a/data/fixtures/scopes/typescript.core/class2.scope b/resources/fixtures/scopes/typescript.core/class2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/class2.scope rename to resources/fixtures/scopes/typescript.core/class2.scope diff --git a/data/fixtures/scopes/typescript.core/class3.scope b/resources/fixtures/scopes/typescript.core/class3.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/class3.scope rename to resources/fixtures/scopes/typescript.core/class3.scope diff --git a/data/fixtures/scopes/typescript.core/disqualifyDelimiter.scope b/resources/fixtures/scopes/typescript.core/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/disqualifyDelimiter.scope rename to resources/fixtures/scopes/typescript.core/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/typescript.core/functionCall.generic.scope b/resources/fixtures/scopes/typescript.core/functionCall.generic.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/functionCall.generic.scope rename to resources/fixtures/scopes/typescript.core/functionCall.generic.scope diff --git a/data/fixtures/scopes/typescript.core/functionCallee.generic.scope b/resources/fixtures/scopes/typescript.core/functionCallee.generic.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/functionCallee.generic.scope rename to resources/fixtures/scopes/typescript.core/functionCallee.generic.scope diff --git a/data/fixtures/scopes/typescript.core/index.json b/resources/fixtures/scopes/typescript.core/index.json similarity index 100% rename from data/fixtures/scopes/typescript.core/index.json rename to resources/fixtures/scopes/typescript.core/index.json diff --git a/data/fixtures/scopes/typescript.core/interior.enum.scope b/resources/fixtures/scopes/typescript.core/interior.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/interior.enum.scope rename to resources/fixtures/scopes/typescript.core/interior.enum.scope diff --git a/data/fixtures/scopes/typescript.core/interior.interface.scope b/resources/fixtures/scopes/typescript.core/interior.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/interior.interface.scope rename to resources/fixtures/scopes/typescript.core/interior.interface.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.argument.formal.scope b/resources/fixtures/scopes/typescript.core/name/name.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.argument.formal.scope rename to resources/fixtures/scopes/typescript.core/name/name.argument.formal.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.argument.formal2.scope b/resources/fixtures/scopes/typescript.core/name/name.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.argument.formal2.scope rename to resources/fixtures/scopes/typescript.core/name/name.argument.formal2.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.class.scope b/resources/fixtures/scopes/typescript.core/name/name.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.class.scope rename to resources/fixtures/scopes/typescript.core/name/name.class.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.class2.scope b/resources/fixtures/scopes/typescript.core/name/name.class2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.class2.scope rename to resources/fixtures/scopes/typescript.core/name/name.class2.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.class3.scope b/resources/fixtures/scopes/typescript.core/name/name.class3.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.class3.scope rename to resources/fixtures/scopes/typescript.core/name/name.class3.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.constant.scope b/resources/fixtures/scopes/typescript.core/name/name.constant.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.constant.scope rename to resources/fixtures/scopes/typescript.core/name/name.constant.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.constructor.scope b/resources/fixtures/scopes/typescript.core/name/name.constructor.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.constructor.scope rename to resources/fixtures/scopes/typescript.core/name/name.constructor.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.enum.scope b/resources/fixtures/scopes/typescript.core/name/name.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.enum.scope rename to resources/fixtures/scopes/typescript.core/name/name.enum.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.field.class.scope b/resources/fixtures/scopes/typescript.core/name/name.field.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.field.class.scope rename to resources/fixtures/scopes/typescript.core/name/name.field.class.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.field.enum.scope b/resources/fixtures/scopes/typescript.core/name/name.field.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.field.enum.scope rename to resources/fixtures/scopes/typescript.core/name/name.field.enum.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.field.interface.scope b/resources/fixtures/scopes/typescript.core/name/name.field.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.field.interface.scope rename to resources/fixtures/scopes/typescript.core/name/name.field.interface.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.function.scope b/resources/fixtures/scopes/typescript.core/name/name.function.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.function.scope rename to resources/fixtures/scopes/typescript.core/name/name.function.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.interface.scope b/resources/fixtures/scopes/typescript.core/name/name.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.interface.scope rename to resources/fixtures/scopes/typescript.core/name/name.interface.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.iteration.class.scope b/resources/fixtures/scopes/typescript.core/name/name.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.iteration.class.scope rename to resources/fixtures/scopes/typescript.core/name/name.iteration.class.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.iteration.enum.scope b/resources/fixtures/scopes/typescript.core/name/name.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.iteration.enum.scope rename to resources/fixtures/scopes/typescript.core/name/name.iteration.enum.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.iteration.interface.scope b/resources/fixtures/scopes/typescript.core/name/name.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.iteration.interface.scope rename to resources/fixtures/scopes/typescript.core/name/name.iteration.interface.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.method.interface.scope b/resources/fixtures/scopes/typescript.core/name/name.method.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.method.interface.scope rename to resources/fixtures/scopes/typescript.core/name/name.method.interface.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.method.scope b/resources/fixtures/scopes/typescript.core/name/name.method.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.method.scope rename to resources/fixtures/scopes/typescript.core/name/name.method.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.method2.scope b/resources/fixtures/scopes/typescript.core/name/name.method2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.method2.scope rename to resources/fixtures/scopes/typescript.core/name/name.method2.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.typeAlias.scope b/resources/fixtures/scopes/typescript.core/name/name.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.typeAlias.scope rename to resources/fixtures/scopes/typescript.core/name/name.typeAlias.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.variable.initialized.scope b/resources/fixtures/scopes/typescript.core/name/name.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.variable.initialized.scope rename to resources/fixtures/scopes/typescript.core/name/name.variable.initialized.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.variable.initialized2.scope b/resources/fixtures/scopes/typescript.core/name/name.variable.initialized2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.variable.initialized2.scope rename to resources/fixtures/scopes/typescript.core/name/name.variable.initialized2.scope diff --git a/data/fixtures/scopes/typescript.core/name/name.variable.uninitialized.scope b/resources/fixtures/scopes/typescript.core/name/name.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/name/name.variable.uninitialized.scope rename to resources/fixtures/scopes/typescript.core/name/name.variable.uninitialized.scope diff --git a/data/fixtures/scopes/typescript.core/namedFunction/namedFunction.constructor.scope b/resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.constructor.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/namedFunction/namedFunction.constructor.scope rename to resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.constructor.scope diff --git a/data/fixtures/scopes/typescript.core/namedFunction/namedFunction.method.scope b/resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.method.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/namedFunction/namedFunction.method.scope rename to resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.method.scope diff --git a/data/fixtures/scopes/typescript.core/namedFunction/namedFunction.method2.scope b/resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.method2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/namedFunction/namedFunction.method2.scope rename to resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.method2.scope diff --git a/data/fixtures/scopes/typescript.core/namedFunction/namedFunction.scope b/resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/namedFunction/namedFunction.scope rename to resources/fixtures/scopes/typescript.core/namedFunction/namedFunction.scope diff --git a/data/fixtures/scopes/typescript.core/namedFunction/namedFunction2.scope b/resources/fixtures/scopes/typescript.core/namedFunction/namedFunction2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/namedFunction/namedFunction2.scope rename to resources/fixtures/scopes/typescript.core/namedFunction/namedFunction2.scope diff --git a/data/fixtures/scopes/typescript.core/statement/statement.enum.scope b/resources/fixtures/scopes/typescript.core/statement/statement.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/statement/statement.enum.scope rename to resources/fixtures/scopes/typescript.core/statement/statement.enum.scope diff --git a/data/fixtures/scopes/typescript.core/statement/statement.field.interface.scope b/resources/fixtures/scopes/typescript.core/statement/statement.field.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/statement/statement.field.interface.scope rename to resources/fixtures/scopes/typescript.core/statement/statement.field.interface.scope diff --git a/data/fixtures/scopes/typescript.core/statement/statement.interface.scope b/resources/fixtures/scopes/typescript.core/statement/statement.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/statement/statement.interface.scope rename to resources/fixtures/scopes/typescript.core/statement/statement.interface.scope diff --git a/data/fixtures/scopes/typescript.core/statement/statement.iteration.interface.scope b/resources/fixtures/scopes/typescript.core/statement/statement.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/statement/statement.iteration.interface.scope rename to resources/fixtures/scopes/typescript.core/statement/statement.iteration.interface.scope diff --git a/data/fixtures/scopes/typescript.core/statement/statement.method.interface.scope b/resources/fixtures/scopes/typescript.core/statement/statement.method.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/statement/statement.method.interface.scope rename to resources/fixtures/scopes/typescript.core/statement/statement.method.interface.scope diff --git a/data/fixtures/scopes/typescript.core/statement/statement.typeAlias.scope b/resources/fixtures/scopes/typescript.core/statement/statement.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/statement/statement.typeAlias.scope rename to resources/fixtures/scopes/typescript.core/statement/statement.typeAlias.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.alias.scope b/resources/fixtures/scopes/typescript.core/type/type.alias.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.alias.scope rename to resources/fixtures/scopes/typescript.core/type/type.alias.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.alias2.scope b/resources/fixtures/scopes/typescript.core/type/type.alias2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.alias2.scope rename to resources/fixtures/scopes/typescript.core/type/type.alias2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.catch.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.catch.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.catch.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.catch.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.iteration.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.iteration.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.iteration.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.iteration.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.constructor.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.iteration.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.iteration.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.iteration.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.iteration.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.iteration.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.iteration.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.iteration.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.iteration.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.lambda.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.method.iteration.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.method.iteration.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.method.iteration.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.method.iteration.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.method.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.method.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.method.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.method.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.argument.formal2.scope b/resources/fixtures/scopes/typescript.core/type/type.argument.formal2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.argument.formal2.scope rename to resources/fixtures/scopes/typescript.core/type/type.argument.formal2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.cast.scope b/resources/fixtures/scopes/typescript.core/type/type.cast.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.cast.scope rename to resources/fixtures/scopes/typescript.core/type/type.cast.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.cast2.scope b/resources/fixtures/scopes/typescript.core/type/type.cast2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.cast2.scope rename to resources/fixtures/scopes/typescript.core/type/type.cast2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.class.scope b/resources/fixtures/scopes/typescript.core/type/type.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.class.scope rename to resources/fixtures/scopes/typescript.core/type/type.class.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.class2.scope b/resources/fixtures/scopes/typescript.core/type/type.class2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.class2.scope rename to resources/fixtures/scopes/typescript.core/type/type.class2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.class3.scope b/resources/fixtures/scopes/typescript.core/type/type.class3.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.class3.scope rename to resources/fixtures/scopes/typescript.core/type/type.class3.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.class4.scope b/resources/fixtures/scopes/typescript.core/type/type.class4.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.class4.scope rename to resources/fixtures/scopes/typescript.core/type/type.class4.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.class5.scope b/resources/fixtures/scopes/typescript.core/type/type.class5.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.class5.scope rename to resources/fixtures/scopes/typescript.core/type/type.class5.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.class6.scope b/resources/fixtures/scopes/typescript.core/type/type.class6.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.class6.scope rename to resources/fixtures/scopes/typescript.core/type/type.class6.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.constant.scope b/resources/fixtures/scopes/typescript.core/type/type.constant.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.constant.scope rename to resources/fixtures/scopes/typescript.core/type/type.constant.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.enum.scope b/resources/fixtures/scopes/typescript.core/type/type.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.enum.scope rename to resources/fixtures/scopes/typescript.core/type/type.enum.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.enum2.scope b/resources/fixtures/scopes/typescript.core/type/type.enum2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.enum2.scope rename to resources/fixtures/scopes/typescript.core/type/type.enum2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.field.class.scope b/resources/fixtures/scopes/typescript.core/type/type.field.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.field.class.scope rename to resources/fixtures/scopes/typescript.core/type/type.field.class.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.field.interface.scope b/resources/fixtures/scopes/typescript.core/type/type.field.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.field.interface.scope rename to resources/fixtures/scopes/typescript.core/type/type.field.interface.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.interface.scope b/resources/fixtures/scopes/typescript.core/type/type.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.interface.scope rename to resources/fixtures/scopes/typescript.core/type/type.interface.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.iteration.block.scope b/resources/fixtures/scopes/typescript.core/type/type.iteration.block.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.iteration.block.scope rename to resources/fixtures/scopes/typescript.core/type/type.iteration.block.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.iteration.block2.scope b/resources/fixtures/scopes/typescript.core/type/type.iteration.block2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.iteration.block2.scope rename to resources/fixtures/scopes/typescript.core/type/type.iteration.block2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.iteration.block3.scope b/resources/fixtures/scopes/typescript.core/type/type.iteration.block3.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.iteration.block3.scope rename to resources/fixtures/scopes/typescript.core/type/type.iteration.block3.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.iteration.block4.scope b/resources/fixtures/scopes/typescript.core/type/type.iteration.block4.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.iteration.block4.scope rename to resources/fixtures/scopes/typescript.core/type/type.iteration.block4.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.iteration.class.scope b/resources/fixtures/scopes/typescript.core/type/type.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.iteration.class.scope rename to resources/fixtures/scopes/typescript.core/type/type.iteration.class.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.iteration.document.scope b/resources/fixtures/scopes/typescript.core/type/type.iteration.document.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.iteration.document.scope rename to resources/fixtures/scopes/typescript.core/type/type.iteration.document.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.iteration.interface.scope b/resources/fixtures/scopes/typescript.core/type/type.iteration.interface.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.iteration.interface.scope rename to resources/fixtures/scopes/typescript.core/type/type.iteration.interface.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.return.lambda.scope b/resources/fixtures/scopes/typescript.core/type/type.return.lambda.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.return.lambda.scope rename to resources/fixtures/scopes/typescript.core/type/type.return.lambda.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.return.method.scope b/resources/fixtures/scopes/typescript.core/type/type.return.method.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.return.method.scope rename to resources/fixtures/scopes/typescript.core/type/type.return.method.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.return.scope b/resources/fixtures/scopes/typescript.core/type/type.return.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.return.scope rename to resources/fixtures/scopes/typescript.core/type/type.return.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.return2.scope b/resources/fixtures/scopes/typescript.core/type/type.return2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.return2.scope rename to resources/fixtures/scopes/typescript.core/type/type.return2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.typeArgument.iteration.scope b/resources/fixtures/scopes/typescript.core/type/type.typeArgument.iteration.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.typeArgument.iteration.scope rename to resources/fixtures/scopes/typescript.core/type/type.typeArgument.iteration.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.typeArgument.scope b/resources/fixtures/scopes/typescript.core/type/type.typeArgument.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.typeArgument.scope rename to resources/fixtures/scopes/typescript.core/type/type.typeArgument.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.typeArgument2.scope b/resources/fixtures/scopes/typescript.core/type/type.typeArgument2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.typeArgument2.scope rename to resources/fixtures/scopes/typescript.core/type/type.typeArgument2.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.variable.initialized.scope b/resources/fixtures/scopes/typescript.core/type/type.variable.initialized.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.variable.initialized.scope rename to resources/fixtures/scopes/typescript.core/type/type.variable.initialized.scope diff --git a/data/fixtures/scopes/typescript.core/type/type.variable.uninitialized.scope b/resources/fixtures/scopes/typescript.core/type/type.variable.uninitialized.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/type/type.variable.uninitialized.scope rename to resources/fixtures/scopes/typescript.core/type/type.variable.uninitialized.scope diff --git a/data/fixtures/scopes/typescript.core/value/value.argument.formal.scope b/resources/fixtures/scopes/typescript.core/value/value.argument.formal.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/value/value.argument.formal.scope rename to resources/fixtures/scopes/typescript.core/value/value.argument.formal.scope diff --git a/data/fixtures/scopes/typescript.core/value/value.field.class.scope b/resources/fixtures/scopes/typescript.core/value/value.field.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/value/value.field.class.scope rename to resources/fixtures/scopes/typescript.core/value/value.field.class.scope diff --git a/data/fixtures/scopes/typescript.core/value/value.field.enum.scope b/resources/fixtures/scopes/typescript.core/value/value.field.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/value/value.field.enum.scope rename to resources/fixtures/scopes/typescript.core/value/value.field.enum.scope diff --git a/data/fixtures/scopes/typescript.core/value/value.iteration.class.scope b/resources/fixtures/scopes/typescript.core/value/value.iteration.class.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/value/value.iteration.class.scope rename to resources/fixtures/scopes/typescript.core/value/value.iteration.class.scope diff --git a/data/fixtures/scopes/typescript.core/value/value.iteration.enum.scope b/resources/fixtures/scopes/typescript.core/value/value.iteration.enum.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/value/value.iteration.enum.scope rename to resources/fixtures/scopes/typescript.core/value/value.iteration.enum.scope diff --git a/data/fixtures/scopes/typescript.core/value/value.typeAlias.scope b/resources/fixtures/scopes/typescript.core/value/value.typeAlias.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/value/value.typeAlias.scope rename to resources/fixtures/scopes/typescript.core/value/value.typeAlias.scope diff --git a/data/fixtures/scopes/typescript.core/value/value.typeAlias2.scope b/resources/fixtures/scopes/typescript.core/value/value.typeAlias2.scope similarity index 100% rename from data/fixtures/scopes/typescript.core/value/value.typeAlias2.scope rename to resources/fixtures/scopes/typescript.core/value/value.typeAlias2.scope diff --git a/data/fixtures/scopes/typescript/index.json b/resources/fixtures/scopes/typescript/index.json similarity index 100% rename from data/fixtures/scopes/typescript/index.json rename to resources/fixtures/scopes/typescript/index.json diff --git a/data/fixtures/scopes/typescript/type.cast.scope b/resources/fixtures/scopes/typescript/type.cast.scope similarity index 100% rename from data/fixtures/scopes/typescript/type.cast.scope rename to resources/fixtures/scopes/typescript/type.cast.scope diff --git a/data/fixtures/scopes/typescriptreact/index.json b/resources/fixtures/scopes/typescriptreact/index.json similarity index 100% rename from data/fixtures/scopes/typescriptreact/index.json rename to resources/fixtures/scopes/typescriptreact/index.json diff --git a/data/fixtures/scopes/xml/attribute.scope b/resources/fixtures/scopes/xml/attribute.scope similarity index 100% rename from data/fixtures/scopes/xml/attribute.scope rename to resources/fixtures/scopes/xml/attribute.scope diff --git a/data/fixtures/scopes/xml/comment.block.scope b/resources/fixtures/scopes/xml/comment.block.scope similarity index 100% rename from data/fixtures/scopes/xml/comment.block.scope rename to resources/fixtures/scopes/xml/comment.block.scope diff --git a/data/fixtures/scopes/xml/element.scope b/resources/fixtures/scopes/xml/element.scope similarity index 100% rename from data/fixtures/scopes/xml/element.scope rename to resources/fixtures/scopes/xml/element.scope diff --git a/data/fixtures/scopes/xml/endTag.scope b/resources/fixtures/scopes/xml/endTag.scope similarity index 100% rename from data/fixtures/scopes/xml/endTag.scope rename to resources/fixtures/scopes/xml/endTag.scope diff --git a/data/fixtures/scopes/xml/interior.element.scope b/resources/fixtures/scopes/xml/interior.element.scope similarity index 100% rename from data/fixtures/scopes/xml/interior.element.scope rename to resources/fixtures/scopes/xml/interior.element.scope diff --git a/data/fixtures/scopes/xml/key.attribute.scope b/resources/fixtures/scopes/xml/key.attribute.scope similarity index 100% rename from data/fixtures/scopes/xml/key.attribute.scope rename to resources/fixtures/scopes/xml/key.attribute.scope diff --git a/data/fixtures/scopes/xml/startTag.scope b/resources/fixtures/scopes/xml/startTag.scope similarity index 100% rename from data/fixtures/scopes/xml/startTag.scope rename to resources/fixtures/scopes/xml/startTag.scope diff --git a/data/fixtures/scopes/xml/string.singleLine.scope b/resources/fixtures/scopes/xml/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/xml/string.singleLine.scope rename to resources/fixtures/scopes/xml/string.singleLine.scope diff --git a/data/fixtures/scopes/xml/tags.scope b/resources/fixtures/scopes/xml/tags.scope similarity index 100% rename from data/fixtures/scopes/xml/tags.scope rename to resources/fixtures/scopes/xml/tags.scope diff --git a/data/fixtures/scopes/xml/textFragment.comment.block.scope b/resources/fixtures/scopes/xml/textFragment.comment.block.scope similarity index 100% rename from data/fixtures/scopes/xml/textFragment.comment.block.scope rename to resources/fixtures/scopes/xml/textFragment.comment.block.scope diff --git a/data/fixtures/scopes/xml/textFragment.element.scope b/resources/fixtures/scopes/xml/textFragment.element.scope similarity index 100% rename from data/fixtures/scopes/xml/textFragment.element.scope rename to resources/fixtures/scopes/xml/textFragment.element.scope diff --git a/data/fixtures/scopes/xml/textFragment.string.singleLine.scope b/resources/fixtures/scopes/xml/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/xml/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/xml/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/xml/value.attribute.scope b/resources/fixtures/scopes/xml/value.attribute.scope similarity index 100% rename from data/fixtures/scopes/xml/value.attribute.scope rename to resources/fixtures/scopes/xml/value.attribute.scope diff --git a/data/fixtures/scopes/yaml/collectionItem.unenclosed.iteration.scope b/resources/fixtures/scopes/yaml/collectionItem.unenclosed.iteration.scope similarity index 100% rename from data/fixtures/scopes/yaml/collectionItem.unenclosed.iteration.scope rename to resources/fixtures/scopes/yaml/collectionItem.unenclosed.iteration.scope diff --git a/data/fixtures/scopes/yaml/collectionItem.unenclosed.multiLine.scope b/resources/fixtures/scopes/yaml/collectionItem.unenclosed.multiLine.scope similarity index 100% rename from data/fixtures/scopes/yaml/collectionItem.unenclosed.multiLine.scope rename to resources/fixtures/scopes/yaml/collectionItem.unenclosed.multiLine.scope diff --git a/data/fixtures/scopes/yaml/comment.line.scope b/resources/fixtures/scopes/yaml/comment.line.scope similarity index 100% rename from data/fixtures/scopes/yaml/comment.line.scope rename to resources/fixtures/scopes/yaml/comment.line.scope diff --git a/data/fixtures/scopes/yaml/disqualifyDelimiter.scope b/resources/fixtures/scopes/yaml/disqualifyDelimiter.scope similarity index 100% rename from data/fixtures/scopes/yaml/disqualifyDelimiter.scope rename to resources/fixtures/scopes/yaml/disqualifyDelimiter.scope diff --git a/data/fixtures/scopes/yaml/key.mapPair.iteration.scope b/resources/fixtures/scopes/yaml/key.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/yaml/key.mapPair.iteration.scope rename to resources/fixtures/scopes/yaml/key.mapPair.iteration.scope diff --git a/data/fixtures/scopes/yaml/key.mapPair.scope b/resources/fixtures/scopes/yaml/key.mapPair.scope similarity index 100% rename from data/fixtures/scopes/yaml/key.mapPair.scope rename to resources/fixtures/scopes/yaml/key.mapPair.scope diff --git a/data/fixtures/scopes/yaml/list.scope b/resources/fixtures/scopes/yaml/list.scope similarity index 100% rename from data/fixtures/scopes/yaml/list.scope rename to resources/fixtures/scopes/yaml/list.scope diff --git a/data/fixtures/scopes/yaml/list2.scope b/resources/fixtures/scopes/yaml/list2.scope similarity index 100% rename from data/fixtures/scopes/yaml/list2.scope rename to resources/fixtures/scopes/yaml/list2.scope diff --git a/data/fixtures/scopes/yaml/map.scope b/resources/fixtures/scopes/yaml/map.scope similarity index 100% rename from data/fixtures/scopes/yaml/map.scope rename to resources/fixtures/scopes/yaml/map.scope diff --git a/data/fixtures/scopes/yaml/string.multiLine.scope b/resources/fixtures/scopes/yaml/string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/yaml/string.multiLine.scope rename to resources/fixtures/scopes/yaml/string.multiLine.scope diff --git a/data/fixtures/scopes/yaml/string.singleLine.scope b/resources/fixtures/scopes/yaml/string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/yaml/string.singleLine.scope rename to resources/fixtures/scopes/yaml/string.singleLine.scope diff --git a/data/fixtures/scopes/yaml/string.singleLine2.scope b/resources/fixtures/scopes/yaml/string.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/yaml/string.singleLine2.scope rename to resources/fixtures/scopes/yaml/string.singleLine2.scope diff --git a/data/fixtures/scopes/yaml/textFragment.comment.line.scope b/resources/fixtures/scopes/yaml/textFragment.comment.line.scope similarity index 100% rename from data/fixtures/scopes/yaml/textFragment.comment.line.scope rename to resources/fixtures/scopes/yaml/textFragment.comment.line.scope diff --git a/data/fixtures/scopes/yaml/textFragment.string.multiLine.scope b/resources/fixtures/scopes/yaml/textFragment.string.multiLine.scope similarity index 100% rename from data/fixtures/scopes/yaml/textFragment.string.multiLine.scope rename to resources/fixtures/scopes/yaml/textFragment.string.multiLine.scope diff --git a/data/fixtures/scopes/yaml/textFragment.string.singleLine.scope b/resources/fixtures/scopes/yaml/textFragment.string.singleLine.scope similarity index 100% rename from data/fixtures/scopes/yaml/textFragment.string.singleLine.scope rename to resources/fixtures/scopes/yaml/textFragment.string.singleLine.scope diff --git a/data/fixtures/scopes/yaml/textFragment.string.singleLine2.scope b/resources/fixtures/scopes/yaml/textFragment.string.singleLine2.scope similarity index 100% rename from data/fixtures/scopes/yaml/textFragment.string.singleLine2.scope rename to resources/fixtures/scopes/yaml/textFragment.string.singleLine2.scope diff --git a/data/fixtures/scopes/yaml/value.mapPair.iteration.scope b/resources/fixtures/scopes/yaml/value.mapPair.iteration.scope similarity index 100% rename from data/fixtures/scopes/yaml/value.mapPair.iteration.scope rename to resources/fixtures/scopes/yaml/value.mapPair.iteration.scope diff --git a/data/fixtures/scopes/yaml/value.mapPair.scope b/resources/fixtures/scopes/yaml/value.mapPair.scope similarity index 100% rename from data/fixtures/scopes/yaml/value.mapPair.scope rename to resources/fixtures/scopes/yaml/value.mapPair.scope diff --git a/fonts/cursorless-glyph.svg b/resources/fonts/cursorless-glyph.svg similarity index 100% rename from fonts/cursorless-glyph.svg rename to resources/fonts/cursorless-glyph.svg diff --git a/fonts/cursorless.woff b/resources/fonts/cursorless.woff similarity index 100% rename from fonts/cursorless.woff rename to resources/fonts/cursorless.woff diff --git a/images/bringArgueAirAndEachAfterDrum.gif b/resources/images/bringArgueAirAndEachAfterDrum.gif similarity index 100% rename from images/bringArgueAirAndEachAfterDrum.gif rename to resources/images/bringArgueAirAndEachAfterDrum.gif diff --git a/images/bringLineHarpAndSunAndMade.gif b/resources/images/bringLineHarpAndSunAndMade.gif similarity index 100% rename from images/bringLineHarpAndSunAndMade.gif rename to resources/images/bringLineHarpAndSunAndMade.gif diff --git a/images/chuckTailRedPipeSlicePastEndOfFile.gif b/resources/images/chuckTailRedPipeSlicePastEndOfFile.gif similarity index 100% rename from images/chuckTailRedPipeSlicePastEndOfFile.gif rename to resources/images/chuckTailRedPipeSlicePastEndOfFile.gif diff --git a/images/clearHarp.gif b/resources/images/clearHarp.gif similarity index 100% rename from images/clearHarp.gif rename to resources/images/clearHarp.gif diff --git a/images/clearPair.gif b/resources/images/clearPair.gif similarity index 100% rename from images/clearPair.gif rename to resources/images/clearPair.gif diff --git a/images/clearSquare.gif b/resources/images/clearSquare.gif similarity index 100% rename from images/clearSquare.gif rename to resources/images/clearSquare.gif diff --git a/images/curlyRepackOx.gif b/resources/images/curlyRepackOx.gif similarity index 100% rename from images/curlyRepackOx.gif rename to resources/images/curlyRepackOx.gif diff --git a/images/cursorless-1.gif b/resources/images/cursorless-1.gif similarity index 100% rename from images/cursorless-1.gif rename to resources/images/cursorless-1.gif diff --git a/images/demo-2.gif b/resources/images/demo-2.gif similarity index 100% rename from images/demo-2.gif rename to resources/images/demo-2.gif diff --git a/images/demo-3.gif b/resources/images/demo-3.gif similarity index 100% rename from images/demo-3.gif rename to resources/images/demo-3.gif diff --git a/images/hats/bolt.svg b/resources/images/hats/bolt.svg similarity index 100% rename from images/hats/bolt.svg rename to resources/images/hats/bolt.svg diff --git a/images/hats/crosshairs.svg b/resources/images/hats/crosshairs.svg similarity index 100% rename from images/hats/crosshairs.svg rename to resources/images/hats/crosshairs.svg diff --git a/images/hats/curve.svg b/resources/images/hats/curve.svg similarity index 100% rename from images/hats/curve.svg rename to resources/images/hats/curve.svg diff --git a/images/hats/default.svg b/resources/images/hats/default.svg similarity index 100% rename from images/hats/default.svg rename to resources/images/hats/default.svg diff --git a/images/hats/ex.svg b/resources/images/hats/ex.svg similarity index 100% rename from images/hats/ex.svg rename to resources/images/hats/ex.svg diff --git a/images/hats/eye.svg b/resources/images/hats/eye.svg similarity index 100% rename from images/hats/eye.svg rename to resources/images/hats/eye.svg diff --git a/images/hats/fox.svg b/resources/images/hats/fox.svg similarity index 100% rename from images/hats/fox.svg rename to resources/images/hats/fox.svg diff --git a/images/hats/frame.svg b/resources/images/hats/frame.svg similarity index 100% rename from images/hats/frame.svg rename to resources/images/hats/frame.svg diff --git a/images/hats/hole.svg b/resources/images/hats/hole.svg similarity index 100% rename from images/hats/hole.svg rename to resources/images/hats/hole.svg diff --git a/images/hats/play.svg b/resources/images/hats/play.svg similarity index 100% rename from images/hats/play.svg rename to resources/images/hats/play.svg diff --git a/images/hats/wing.svg b/resources/images/hats/wing.svg similarity index 100% rename from images/hats/wing.svg rename to resources/images/hats/wing.svg diff --git a/images/highlight.gif b/resources/images/highlight.gif similarity index 100% rename from images/highlight.gif rename to resources/images/highlight.gif diff --git a/images/icon.png b/resources/images/icon.png similarity index 100% rename from images/icon.png rename to resources/images/icon.png diff --git a/images/logo-white.png b/resources/images/logo-white.png similarity index 100% rename from images/logo-white.png rename to resources/images/logo-white.png diff --git a/images/logo.svg b/resources/images/logo.svg similarity index 100% rename from images/logo.svg rename to resources/images/logo.svg diff --git a/images/main-demo.gif b/resources/images/main-demo.gif similarity index 100% rename from images/main-demo.gif rename to resources/images/main-demo.gif diff --git a/images/moveArgAirAndEachToAfterDrum.gif b/resources/images/moveArgAirAndEachToAfterDrum.gif similarity index 100% rename from images/moveArgAirAndEachToAfterDrum.gif rename to resources/images/moveArgAirAndEachToAfterDrum.gif diff --git a/images/nestWrapNearPastDrum.gif b/resources/images/nestWrapNearPastDrum.gif similarity index 100% rename from images/nestWrapNearPastDrum.gif rename to resources/images/nestWrapNearPastDrum.gif diff --git a/images/preCapSlicePastGreenRisk.gif b/resources/images/preCapSlicePastGreenRisk.gif similarity index 100% rename from images/preCapSlicePastGreenRisk.gif rename to resources/images/preCapSlicePastGreenRisk.gif diff --git a/images/squareRepackHarp.gif b/resources/images/squareRepackHarp.gif similarity index 100% rename from images/squareRepackHarp.gif rename to resources/images/squareRepackHarp.gif diff --git a/images/svg-calculations.png b/resources/images/svg-calculations.png similarity index 100% rename from images/svg-calculations.png rename to resources/images/svg-calculations.png diff --git a/images/swap.gif b/resources/images/swap.gif similarity index 100% rename from images/swap.gif rename to resources/images/swap.gif diff --git a/images/swapPairOxWithPit.gif b/resources/images/swapPairOxWithPit.gif similarity index 100% rename from images/swapPairOxWithPit.gif rename to resources/images/swapPairOxWithPit.gif diff --git a/images/tryWrapFine.gif b/resources/images/tryWrapFine.gif similarity index 100% rename from images/tryWrapFine.gif rename to resources/images/tryWrapFine.gif diff --git a/patches/@docusaurus__theme-search-algolia@3.1.0.patch b/resources/patches/@docusaurus__theme-search-algolia@3.1.0.patch similarity index 100% rename from patches/@docusaurus__theme-search-algolia@3.1.0.patch rename to resources/patches/@docusaurus__theme-search-algolia@3.1.0.patch diff --git a/patches/@types__nearley@2.11.5.patch b/resources/patches/@types__nearley@2.11.5.patch similarity index 100% rename from patches/@types__nearley@2.11.5.patch rename to resources/patches/@types__nearley@2.11.5.patch diff --git a/patches/nearley@2.20.1.patch b/resources/patches/nearley@2.20.1.patch similarity index 100% rename from patches/nearley@2.20.1.patch rename to resources/patches/nearley@2.20.1.patch diff --git a/data/playground/Java.java b/resources/playground/Java.java similarity index 100% rename from data/playground/Java.java rename to resources/playground/Java.java diff --git a/data/playground/c-plus-plus.cpp b/resources/playground/c-plus-plus.cpp similarity index 100% rename from data/playground/c-plus-plus.cpp rename to resources/playground/c-plus-plus.cpp diff --git a/data/playground/csharp.cs b/resources/playground/csharp.cs similarity index 100% rename from data/playground/csharp.cs rename to resources/playground/csharp.cs diff --git a/data/playground/dart.dart b/resources/playground/dart.dart similarity index 100% rename from data/playground/dart.dart rename to resources/playground/dart.dart diff --git a/data/playground/go/branch.go b/resources/playground/go/branch.go similarity index 100% rename from data/playground/go/branch.go rename to resources/playground/go/branch.go diff --git a/data/playground/go/funcs.go b/resources/playground/go/funcs.go similarity index 100% rename from data/playground/go/funcs.go rename to resources/playground/go/funcs.go diff --git a/data/playground/go/go.mod b/resources/playground/go/go.mod similarity index 100% rename from data/playground/go/go.mod rename to resources/playground/go/go.mod diff --git a/data/playground/go/maps_and_lists.go b/resources/playground/go/maps_and_lists.go similarity index 100% rename from data/playground/go/maps_and_lists.go rename to resources/playground/go/maps_and_lists.go diff --git a/data/playground/go/statements.go b/resources/playground/go/statements.go similarity index 100% rename from data/playground/go/statements.go rename to resources/playground/go/statements.go diff --git a/data/playground/hat-test.txt b/resources/playground/hat-test.txt similarity index 100% rename from data/playground/hat-test.txt rename to resources/playground/hat-test.txt diff --git a/data/playground/html.html b/resources/playground/html.html similarity index 100% rename from data/playground/html.html rename to resources/playground/html.html diff --git a/data/playground/javascript.js b/resources/playground/javascript.js similarity index 100% rename from data/playground/javascript.js rename to resources/playground/javascript.js diff --git a/data/playground/json.json b/resources/playground/json.json similarity index 100% rename from data/playground/json.json rename to resources/playground/json.json diff --git a/data/playground/lua/lua.lua b/resources/playground/lua/lua.lua similarity index 100% rename from data/playground/lua/lua.lua rename to resources/playground/lua/lua.lua diff --git a/data/playground/markdown.md b/resources/playground/markdown.md similarity index 100% rename from data/playground/markdown.md rename to resources/playground/markdown.md diff --git a/data/playground/python.py b/resources/playground/python.py similarity index 100% rename from data/playground/python.py rename to resources/playground/python.py diff --git a/data/playground/python/maps_and_lists.py b/resources/playground/python/maps_and_lists.py similarity index 100% rename from data/playground/python/maps_and_lists.py rename to resources/playground/python/maps_and_lists.py diff --git a/data/playground/python/statements.py b/resources/playground/python/statements.py similarity index 100% rename from data/playground/python/statements.py rename to resources/playground/python/statements.py diff --git a/data/playground/python/strings.py b/resources/playground/python/strings.py similarity index 100% rename from data/playground/python/strings.py rename to resources/playground/python/strings.py diff --git a/data/playground/python/values.py b/resources/playground/python/values.py similarity index 100% rename from data/playground/python/values.py rename to resources/playground/python/values.py diff --git a/data/playground/scala.scala b/resources/playground/scala.scala similarity index 100% rename from data/playground/scala.scala rename to resources/playground/scala.scala diff --git a/data/playground/text.txt b/resources/playground/text.txt similarity index 100% rename from data/playground/text.txt rename to resources/playground/text.txt diff --git a/data/playground/typescript.ts b/resources/playground/typescript.ts similarity index 100% rename from data/playground/typescript.ts rename to resources/playground/typescript.ts diff --git a/data/playground/typescriptreacts.tsx b/resources/playground/typescriptreacts.tsx similarity index 100% rename from data/playground/typescriptreacts.tsx rename to resources/playground/typescriptreacts.tsx diff --git a/data/playground/xml.xml b/resources/playground/xml.xml similarity index 100% rename from data/playground/xml.xml rename to resources/playground/xml.xml diff --git a/queries/c.scm b/resources/queries/c.scm similarity index 100% rename from queries/c.scm rename to resources/queries/c.scm diff --git a/queries/clojure.scm b/resources/queries/clojure.scm similarity index 100% rename from queries/clojure.scm rename to resources/queries/clojure.scm diff --git a/queries/cpp.scm b/resources/queries/cpp.scm similarity index 100% rename from queries/cpp.scm rename to resources/queries/cpp.scm diff --git a/queries/csharp.scm b/resources/queries/csharp.scm similarity index 100% rename from queries/csharp.scm rename to resources/queries/csharp.scm diff --git a/queries/css.scm b/resources/queries/css.scm similarity index 100% rename from queries/css.scm rename to resources/queries/css.scm diff --git a/queries/dart.scm b/resources/queries/dart.scm similarity index 100% rename from queries/dart.scm rename to resources/queries/dart.scm diff --git a/queries/go.scm b/resources/queries/go.scm similarity index 100% rename from queries/go.scm rename to resources/queries/go.scm diff --git a/queries/html.scm b/resources/queries/html.scm similarity index 100% rename from queries/html.scm rename to resources/queries/html.scm diff --git a/queries/java-properties.scm b/resources/queries/java-properties.scm similarity index 100% rename from queries/java-properties.scm rename to resources/queries/java-properties.scm diff --git a/queries/java.scm b/resources/queries/java.scm similarity index 100% rename from queries/java.scm rename to resources/queries/java.scm diff --git a/queries/javascript.core.scm b/resources/queries/javascript.core.scm similarity index 100% rename from queries/javascript.core.scm rename to resources/queries/javascript.core.scm diff --git a/queries/javascript.fieldAccess.scm b/resources/queries/javascript.fieldAccess.scm similarity index 100% rename from queries/javascript.fieldAccess.scm rename to resources/queries/javascript.fieldAccess.scm diff --git a/queries/javascript.function.scm b/resources/queries/javascript.function.scm similarity index 100% rename from queries/javascript.function.scm rename to resources/queries/javascript.function.scm diff --git a/queries/javascript.jsx.scm b/resources/queries/javascript.jsx.scm similarity index 100% rename from queries/javascript.jsx.scm rename to resources/queries/javascript.jsx.scm diff --git a/queries/javascript.scm b/resources/queries/javascript.scm similarity index 100% rename from queries/javascript.scm rename to resources/queries/javascript.scm diff --git a/queries/javascriptreact.scm b/resources/queries/javascriptreact.scm similarity index 100% rename from queries/javascriptreact.scm rename to resources/queries/javascriptreact.scm diff --git a/queries/json.scm b/resources/queries/json.scm similarity index 100% rename from queries/json.scm rename to resources/queries/json.scm diff --git a/queries/jsonc.scm b/resources/queries/jsonc.scm similarity index 100% rename from queries/jsonc.scm rename to resources/queries/jsonc.scm diff --git a/queries/jsonl.scm b/resources/queries/jsonl.scm similarity index 100% rename from queries/jsonl.scm rename to resources/queries/jsonl.scm diff --git a/queries/kotlin.scm b/resources/queries/kotlin.scm similarity index 100% rename from queries/kotlin.scm rename to resources/queries/kotlin.scm diff --git a/queries/latex.scm b/resources/queries/latex.scm similarity index 100% rename from queries/latex.scm rename to resources/queries/latex.scm diff --git a/queries/lua.scm b/resources/queries/lua.scm similarity index 100% rename from queries/lua.scm rename to resources/queries/lua.scm diff --git a/queries/markdown.scm b/resources/queries/markdown.scm similarity index 100% rename from queries/markdown.scm rename to resources/queries/markdown.scm diff --git a/queries/php.scm b/resources/queries/php.scm similarity index 100% rename from queries/php.scm rename to resources/queries/php.scm diff --git a/queries/properties.scm b/resources/queries/properties.scm similarity index 100% rename from queries/properties.scm rename to resources/queries/properties.scm diff --git a/queries/python.fieldAccess.scm b/resources/queries/python.fieldAccess.scm similarity index 100% rename from queries/python.fieldAccess.scm rename to resources/queries/python.fieldAccess.scm diff --git a/queries/python.scm b/resources/queries/python.scm similarity index 100% rename from queries/python.scm rename to resources/queries/python.scm diff --git a/queries/r.scm b/resources/queries/r.scm similarity index 100% rename from queries/r.scm rename to resources/queries/r.scm diff --git a/queries/ruby.scm b/resources/queries/ruby.scm similarity index 100% rename from queries/ruby.scm rename to resources/queries/ruby.scm diff --git a/queries/rust.scm b/resources/queries/rust.scm similarity index 100% rename from queries/rust.scm rename to resources/queries/rust.scm diff --git a/queries/scala.scm b/resources/queries/scala.scm similarity index 100% rename from queries/scala.scm rename to resources/queries/scala.scm diff --git a/queries/scm.collections.scm b/resources/queries/scm.collections.scm similarity index 100% rename from queries/scm.collections.scm rename to resources/queries/scm.collections.scm diff --git a/queries/scm.name.scm b/resources/queries/scm.name.scm similarity index 100% rename from queries/scm.name.scm rename to resources/queries/scm.name.scm diff --git a/queries/scm.scm b/resources/queries/scm.scm similarity index 100% rename from queries/scm.scm rename to resources/queries/scm.scm diff --git a/queries/scss.scm b/resources/queries/scss.scm similarity index 100% rename from queries/scss.scm rename to resources/queries/scss.scm diff --git a/queries/talon-list.scm b/resources/queries/talon-list.scm similarity index 100% rename from queries/talon-list.scm rename to resources/queries/talon-list.scm diff --git a/queries/talon.scm b/resources/queries/talon.scm similarity index 100% rename from queries/talon.scm rename to resources/queries/talon.scm diff --git a/queries/typescript.core.scm b/resources/queries/typescript.core.scm similarity index 100% rename from queries/typescript.core.scm rename to resources/queries/typescript.core.scm diff --git a/queries/typescript.scm b/resources/queries/typescript.scm similarity index 100% rename from queries/typescript.scm rename to resources/queries/typescript.scm diff --git a/queries/typescriptreact.scm b/resources/queries/typescriptreact.scm similarity index 100% rename from queries/typescriptreact.scm rename to resources/queries/typescriptreact.scm diff --git a/queries/xml.scm b/resources/queries/xml.scm similarity index 100% rename from queries/xml.scm rename to resources/queries/xml.scm diff --git a/queries/yaml.scm b/resources/queries/yaml.scm similarity index 100% rename from queries/yaml.scm rename to resources/queries/yaml.scm diff --git a/scripts/auto-add-dependency.sh b/resources/scripts/auto-add-dependency.sh similarity index 82% rename from scripts/auto-add-dependency.sh rename to resources/scripts/auto-add-dependency.sh index 175611f0fe..87fe9a140c 100755 --- a/scripts/auto-add-dependency.sh +++ b/resources/scripts/auto-add-dependency.sh @@ -3,7 +3,7 @@ set -euo pipefail if [[ "$1" == "--help" ]]; then cat < [import-name] +Usage: ./resources/scripts/auto-add-dependency.sh [options] [import-name] This script searches for references to in all our monorepo packages, and runs pnpm install for each package that references . @@ -14,8 +14,8 @@ pnpm install. For example: - ./scripts/auto-add-dependency.sh lodash - ./scripts/auto-add-dependency.sh lodash -D @types/lodash + ./resources/scripts/auto-add-dependency.sh lodash + ./resources/scripts/auto-add-dependency.sh lodash -D @types/lodash EOF exit 0 fi diff --git a/scripts/build-and-assemble-website.sh b/resources/scripts/build-and-assemble-website.sh similarity index 100% rename from scripts/build-and-assemble-website.sh rename to resources/scripts/build-and-assemble-website.sh diff --git a/scripts/deploy-cursorless-nvim.sh b/resources/scripts/deploy-cursorless-nvim.sh similarity index 100% rename from scripts/deploy-cursorless-nvim.sh rename to resources/scripts/deploy-cursorless-nvim.sh diff --git a/scripts/deploy-cursorless-talon.sh b/resources/scripts/deploy-cursorless-talon.sh similarity index 100% rename from scripts/deploy-cursorless-talon.sh rename to resources/scripts/deploy-cursorless-talon.sh diff --git a/scripts/forbid-todo.sh b/resources/scripts/forbid-todo.sh similarity index 69% rename from scripts/forbid-todo.sh rename to resources/scripts/forbid-todo.sh index bd719bc1db..4f8ac4cf42 100755 --- a/scripts/forbid-todo.sh +++ b/resources/scripts/forbid-todo.sh @@ -4,7 +4,7 @@ set -euo pipefail # Find the string 'TODO' in all files tracked by git, excluding # this file -TODOS_FOUND=$(git grep --color=always -nw TODO -- ':!scripts/forbid-todo.sh' ':!.github/workflows/test.yml' || true) +TODOS_FOUND=$(git grep --color=always -nw TODO -- ':!resources/scripts/forbid-todo.sh' ':!.github/workflows/test.yml' || true) if [ -n "$TODOS_FOUND" ]; then printf "\e[1;31mERROR: \e[0mTODOs found in codebase:\n" diff --git a/scripts/install-neovim-dependencies.sh b/resources/scripts/install-neovim-dependencies.sh similarity index 100% rename from scripts/install-neovim-dependencies.sh rename to resources/scripts/install-neovim-dependencies.sh diff --git a/scripts/lint-lua-ls.sh b/resources/scripts/lint-lua-ls.sh similarity index 100% rename from scripts/lint-lua-ls.sh rename to resources/scripts/lint-lua-ls.sh diff --git a/typings/treeSitter.d.ts b/resources/typings/treeSitter.d.ts similarity index 100% rename from typings/treeSitter.d.ts rename to resources/typings/treeSitter.d.ts diff --git a/third-party-licenses.csv b/third-party-licenses.csv deleted file mode 100644 index d95fd3e299..0000000000 --- a/third-party-licenses.csv +++ /dev/null @@ -1,19 +0,0 @@ -"module name","licenses","repository","licenseUrl","parents" -"@docusaurus/core@2.0.0-beta.17","MIT","https://github.com/facebook/docusaurus","https://github.com/facebook/docusaurus/raw/master/LICENSE","website" -"@docusaurus/preset-classic@2.0.0-beta.17","MIT","https://github.com/facebook/docusaurus","https://github.com/facebook/docusaurus/raw/master/LICENSE","website" -"@mdx-js/react@1.6.22","MIT","https://github.com/mdx-js/mdx","https://github.com/mdx-js/mdx/raw/master/license","website" -"@types/lodash@4.14.181","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped","https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE","cursorless" -"ansicolor@1.1.100","Unlicense","https://github.com/xpl/ansicolor","https://github.com/xpl/ansicolor/raw/master/LICENSE","metals" -"brace-expansion@2.0.1","MIT","https://github.com/juliangruber/brace-expansion","https://github.com/juliangruber/brace-expansion/raw/master/LICENSE","vscode-fileutils" -"clsx@1.1.1","MIT","https://github.com/lukeed/clsx","https://github.com/lukeed/clsx/raw/master/license","website" -"immutability-helper@3.1.1","MIT","https://github.com/kolodny/immutability-helper","https://github.com/kolodny/immutability-helper/raw/master/LICENSE","cursorless" -"jsonc-parser@2.3.1","MIT","https://github.com/microsoft/node-jsonc-parser","https://github.com/microsoft/node-jsonc-parser/raw/master/LICENSE.md","parse-tree" -"mdast-util-find-and-replace@2.1.0","MIT","https://github.com/syntax-tree/mdast-util-find-and-replace","https://github.com/syntax-tree/mdast-util-find-and-replace/raw/master/license","website" -"metals-languageclient@0.5.15","Apache-2.0","https://github.com/scalameta/metals-languageclient","https://github.com/scalameta/metals-languageclient/raw/master/LICENSE","metals" -"prism-react-renderer@1.3.1","MIT","https://github.com/FormidableLabs/prism-react-renderer","https://github.com/FormidableLabs/prism-react-renderer/raw/master/LICENSE","website" -"promisify-child-process@4.1.1","MIT","https://github.com/jcoreio/promisify-child-process","https://github.com/jcoreio/promisify-child-process/raw/master/LICENSE.md","metals" -"react-dom@17.0.2","MIT","https://github.com/facebook/react","https://github.com/facebook/react/raw/master/LICENSE","website" -"react@17.0.2","MIT","https://github.com/facebook/react","https://github.com/facebook/react/raw/master/LICENSE","website" -"tar@6.1.11","ISC","https://github.com/npm/node-tar","https://github.com/npm/node-tar/raw/master/LICENSE","parse-tree" -"unist-util-visit@4.1.0","MIT","https://github.com/syntax-tree/unist-util-visit","https://github.com/syntax-tree/unist-util-visit/raw/master/license","website" -"vscode-languageclient@7.0.0","MIT","https://github.com/Microsoft/vscode-languageserver-node","https://github.com/Microsoft/vscode-languageserver-node/raw/master/License.txt","metals"