From c684f4f3da5665f3571307e4eabdcdeedf7b5aa2 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Thu, 2 Feb 2017 16:06:19 +0900 Subject: [PATCH] bin/test for Active Job and Action Cable tests According to the commit comment on 54d84cbb77a7fbc6359eda4eb40cc7da29c426e1, AJ/bin/test was intentionally not added, but AJ tests doesn't actually do anything special other than specifying ENV['AJ_ADAPTER'], which can be easily done via command line environment variable. --- actioncable/bin/test | 4 ++++ activejob/bin/test | 4 ++++ 2 files changed, 8 insertions(+) create mode 100755 actioncable/bin/test create mode 100755 activejob/bin/test diff --git a/actioncable/bin/test b/actioncable/bin/test new file mode 100755 index 0000000000..a7beb14b27 --- /dev/null +++ b/actioncable/bin/test @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby + +COMPONENT_ROOT = File.expand_path("..", __dir__) +require File.expand_path("../tools/test", COMPONENT_ROOT) diff --git a/activejob/bin/test b/activejob/bin/test new file mode 100755 index 0000000000..a7beb14b27 --- /dev/null +++ b/activejob/bin/test @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby + +COMPONENT_ROOT = File.expand_path("..", __dir__) +require File.expand_path("../tools/test", COMPONENT_ROOT)