mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 15:28:37 +08:00
DEV: stop mutating inputs as a side effect
We had quite a few cases in core where inputs are being mutated as a side effect of calling a method. This handles all the cases where specs caught this. Mutating inputs makes code harder to reason about. Eg: ``` frog = "frog" jump(frog) puts frog "fly" # ????? ``` This commit is part of a followup commit that adds # frozen_string_literal to all our specs.
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
require_dependency 'site_setting_extension'
|
||||
require_dependency 'site_settings/local_process_provider'
|
||||
@ -776,8 +778,8 @@ describe SiteSettingExtension do
|
||||
describe "get_hostname" do
|
||||
|
||||
it "properly extracts the hostname" do
|
||||
# consider testing this through a public interface, this tests implementation details
|
||||
expect(settings.send(:get_hostname, "discourse.org")).to eq("discourse.org")
|
||||
expect(settings.send(:get_hostname, " discourse.org ")).to eq("discourse.org")
|
||||
expect(settings.send(:get_hostname, "@discourse.org")).to eq("discourse.org")
|
||||
expect(settings.send(:get_hostname, "https://discourse.org")).to eq("discourse.org")
|
||||
end
|
||||
|
Reference in New Issue
Block a user